Skip to content

Instantly share code, notes, and snippets.

View magicoder10's full-sized avatar
:octocat:
Focusing

Magic Coder magicoder10

:octocat:
Focusing
View GitHub Profile
Copyright 2018 Google LLC.
SPDX-License-Identifier: Apache-2.0
Authors: [email protected], [email protected] [email protected], [email protected]
# Building Kubernetes from Source in Minutes
In this repo you'll find instructions for building kubernetes (k8s) from source in minutes.
You will start a GCP VM, install kubernetes (k8s) build and runtime dependencies, then build k8s from source. Afterward, we'll startup the local build and verify its working.
$ wget http://downloads.sourceforge.net/project/glfw/glfw/3.0.1/glfw-3.0.1.zip
$ unzip glfw-3.0.1.zip
$ cd glfw-3.0.1/
$ mkdir build
$ cd build
$ export MACOSX_DEPLOYMENT_TARGET=10.8
$ cmake -D GLFW_NATIVE_API=1 -D CMAKE_OSX_ARCHITECTURES="i386;x86_64" -D BUILD_SHARED_LIBS=ON -D CMAKE_C_COMPILER=clang ../
$ make
$ ls -l src/libglfw*