We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a22c134 commit eb66e13Copy full SHA for eb66e13
CHANGELOG.md
@@ -26,6 +26,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
26
27
- Build against go 1.17. (#553)
28
29
+- Build with CGO_ENABLED=0 set, to create more portable binaries. This could
30
+ have an affect on DNS resolution if you rely on anything non-standard. (#421)
31
+
32
### Deprecated
33
34
- The `preferred_ranges` option has been supported as a replacement for
Makefile
@@ -2,6 +2,8 @@ GOMINVERSION = 1.17
2
NEBULA_CMD_PATH = "./cmd/nebula"
3
GO111MODULE = on
4
export GO111MODULE
5
+CGO_ENABLED = 0
6
+export CGO_ENABLED
7
8
# Set up OS specific bits
9
ifeq ($(OS),Windows_NT)
0 commit comments