Disable CGO when building quickly
This commit is contained in:
parent
e85a6d86df
commit
010f90ceec
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -76,7 +76,7 @@ clean:
|
||||||
.PHONY: quick
|
.PHONY: quick
|
||||||
quick: LDF += $(shell GOPATH=${GOPATH} build/flags.sh)
|
quick: LDF += $(shell GOPATH=${GOPATH} build/flags.sh)
|
||||||
quick:
|
quick:
|
||||||
$(GO) build
|
CGO_ENABLED=0 $(GO) build
|
||||||
|
|
||||||
# The `make build` command compiles
|
# The `make build` command compiles
|
||||||
# the build flags, gets the project
|
# the build flags, gets the project
|
||||||
|
|
Loading…
Reference in a new issue