update go version and ldflags

update go version to 1.9.3 and add -w ldflag to remove DWARF symbol table from binary see: https://golang.org/cmd/link/
This commit is contained in:
oilbeater 2018-01-30 00:17:06 +08:00
parent cc67497776
commit 1dcc0e2627
1 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@ GCS_URL=$(GCS_LOCATION:gs://%=https://storage.googleapis.com/%)
LATEST_FILE?=latest-ci.txt LATEST_FILE?=latest-ci.txt
GOPATH_1ST=$(shell go env | grep GOPATH | cut -f 2 -d \") GOPATH_1ST=$(shell go env | grep GOPATH | cut -f 2 -d \")
UNIQUE:=$(shell date +%s) UNIQUE:=$(shell date +%s)
GOVERSION=1.9.2 GOVERSION=1.9.3
BUILD=$(GOPATH_1ST)/src/k8s.io/kops/.build BUILD=$(GOPATH_1ST)/src/k8s.io/kops/.build
LOCAL=$(BUILD)/local LOCAL=$(BUILD)/local
BINDATA_TARGETS=upup/models/bindata.go federation/model/bindata.go BINDATA_TARGETS=upup/models/bindata.go federation/model/bindata.go
@ -90,7 +90,7 @@ ifdef STATIC_BUILD
CGO_ENABLED=0 CGO_ENABLED=0
export CGO_ENABLED export CGO_ENABLED
EXTRA_BUILDFLAGS=-installsuffix cgo EXTRA_BUILDFLAGS=-installsuffix cgo
EXTRA_LDFLAGS=-s EXTRA_LDFLAGS=-s -w
endif endif
SHASUMCMD := $(shell command -v sha1sum || command -v shasum; 2> /dev/null) SHASUMCMD := $(shell command -v sha1sum || command -v shasum; 2> /dev/null)