X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=Makefile;h=ae5a69c2bf6304b866d803e4dfc769f399b0817b;hb=777204d72f9d184e4416f943d8a1a38051dfb5ae;hp=190dd083a07cf8f75d6b998ac0488fa4742154d9;hpb=fec61be456784b53906b87f853c109a757e2281f;p=src%2Fxds%2Fxds-agent.git diff --git a/Makefile b/Makefile index 190dd08..ae5a69c 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,8 @@ ifeq ($(origin SUB_VERSION), undefined) ifneq ($(SUB_VERSION), ) VERSION := $(firstword $(subst -, ,$(SUB_VERSION))) SUB_VERSION := $(word 2,$(subst -, ,$(SUB_VERSION))) - else + endif + ifeq ($(SUB_VERSION), ) SUB_VERSION := $(shell git rev-parse --short HEAD) ifeq ($(SUB_VERSION), ) SUB_VERSION := unknown-dev @@ -56,11 +57,14 @@ VERBOSE_2 := -v -x # Release or Debug mode ifeq ($(filter 1,$(RELEASE) $(REL)),) - GORELEASE= + GO_LDFLAGS= + # disable compiler optimizations and inlining + GO_GCFLAGS=-N -l BUILD_MODE="Debug mode" else # optimized code without debug info - GORELEASE= -s -w + GO_LDFLAGS=-s -w + GO_GCFLAGS= BUILD_MODE="Release mode" endif @@ -75,7 +79,7 @@ all: tools/syncthing vendor build build: tools/syncthing/copytobin @echo "### Build XDS agent (version $(VERSION), subversion $(SUB_VERSION)) - $(BUILD_MODE)"; - @cd $(ROOT_SRCDIR); $(BUILD_ENV_FLAGS) go build $(VERBOSE_$(V)) -i -o $(LOCAL_BINDIR)/xds-agent$(EXT) -ldflags "$(GORELEASE) -X main.AppVersion=$(VERSION) -X main.AppSubVersion=$(SUB_VERSION)" . + @cd $(ROOT_SRCDIR); $(BUILD_ENV_FLAGS) go build $(VERBOSE_$(V)) -i -o $(LOCAL_BINDIR)/xds-agent$(EXT) -ldflags "$(GORELEASE) -X main.AppVersion=$(VERSION) -X main.AppSubVersion=$(SUB_VERSION)" -gcflags "$(GO_GCFLAGS)" . package: clean tools/syncthing vendor build @mkdir -p $(PACKAGE_DIR)/xds-agent @@ -91,6 +95,7 @@ package-all: GOOS=windows GOARCH=amd64 RELEASE=1 make -f $(ROOT_SRCDIR)/Makefile package @echo "# Build darwin amd64..." GOOS=darwin GOARCH=amd64 RELEASE=1 make -f $(ROOT_SRCDIR)/Makefile package + make -f $(ROOT_SRCDIR)/Makefile clean test: tools/glide go test --race $(shell $(LOCAL_TOOLSDIR)/glide novendor)