Documentation/building.md
The most reliable way to build flannel is by using Docker.
To build flannel in a container run make dist/flanneld-amd64.
You will now have a flanneld-amd64 binary in the dist directory.
If you're not running amd64 then you need to manually set ARCH before running make. For example, to produce a
flanneld-s390x binary and image, run
If you want to cross-compile for a different platform (e.g. you're running amd64 but you want to produce arm binaries) then you need the qemu-static binaries to be present in /usr/bin. They can be installed on Ubuntu with
sudo apt-get install qemu-user-staticThen you should be able to set the ARCH as above
To build the multi-arch image of flannel locally, you need to install Docker buildx. Then you can use the following target:
make build-multi-arch
If you don't already have a builder running locally, you can this target to start it:
make buildx-create-builder
See the buildx documentation for more details.
To run the end-to-end tests locally, you need to installl Docker compose.
sudo apt-get install linux-libc-dev golang gcc.
If the golang version installed is not 1.7 or higher. Download the newest golang and install manually.
To build the flannel.exe on windows, mingw-w64 is also needed. Run command sudo apt-get install mingw-w64sudo yum install kernel-headers golang gcc glibc-static.github.com/flannel-io/flannel: cd $GOPATH/src; git clone https://github.com/flannel-io/flannel.gitCGO_ENABLED=1: cd flannel; CGO_ENABLED=1 make dist/flanneld for linux usage.
Run the build script, ensuring that CGO_ENABLED=1: cd flannel; CGO_ENABLED=1 make dist/flanneld.exe for windows usage.