mirror of https://github.com/slackhq/nebula.git
parent
a22c134bf5
commit
eb66e13dc4
|
@ -26,6 +26,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
- Build against go 1.17. (#553)
|
- Build against go 1.17. (#553)
|
||||||
|
|
||||||
|
- Build with CGO_ENABLED=0 set, to create more portable binaries. This could
|
||||||
|
have an affect on DNS resolution if you rely on anything non-standard. (#421)
|
||||||
|
|
||||||
### Deprecated
|
### Deprecated
|
||||||
|
|
||||||
- The `preferred_ranges` option has been supported as a replacement for
|
- The `preferred_ranges` option has been supported as a replacement for
|
||||||
|
|
2
Makefile
2
Makefile
|
@ -2,6 +2,8 @@ GOMINVERSION = 1.17
|
||||||
NEBULA_CMD_PATH = "./cmd/nebula"
|
NEBULA_CMD_PATH = "./cmd/nebula"
|
||||||
GO111MODULE = on
|
GO111MODULE = on
|
||||||
export GO111MODULE
|
export GO111MODULE
|
||||||
|
CGO_ENABLED = 0
|
||||||
|
export CGO_ENABLED
|
||||||
|
|
||||||
# Set up OS specific bits
|
# Set up OS specific bits
|
||||||
ifeq ($(OS),Windows_NT)
|
ifeq ($(OS),Windows_NT)
|
||||||
|
|
Loading…
Reference in New Issue