Merge pull request #7107 from mindw/static_linux_amd64_bin
make linux amd64 binaries static again.
This commit is contained in:
commit
511101ab75
|
@ -35,6 +35,9 @@ if ! which gox > /dev/null; then
|
||||||
go get -u github.com/mitchellh/gox
|
go get -u github.com/mitchellh/gox
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# instruct gox to build statically linked binaries
|
||||||
|
export CGO_ENABLED=0
|
||||||
|
|
||||||
LD_FLAGS="-X main.GitCommit=${GIT_COMMIT}${GIT_DIRTY}"
|
LD_FLAGS="-X main.GitCommit=${GIT_COMMIT}${GIT_DIRTY}"
|
||||||
# In relase mode we don't want debug information in the binary
|
# In relase mode we don't want debug information in the binary
|
||||||
if [[ -n "${TF_RELEASE}" ]]; then
|
if [[ -n "${TF_RELEASE}" ]]; then
|
||||||
|
|
Loading…
Reference in New Issue