From 87b085c8cd7b87d2ea26a0b846e4e4f2e99e0ded Mon Sep 17 00:00:00 2001 From: CrazyMax Date: Sat, 23 Jul 2022 09:38:50 +0200 Subject: [PATCH] missing DWARF symbol table Signed-off-by: CrazyMax --- scripts/build/.variables | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/build/.variables b/scripts/build/.variables index f14e54f2f4..449fde7900 100755 --- a/scripts/build/.variables +++ b/scripts/build/.variables @@ -71,7 +71,7 @@ if [ "$CGO_ENABLED" = "1" ] && [ "$(go env GOOS)" != "windows" ]; then fi export GO_BUILDMODE -GO_LDFLAGS="${GO_LDFLAGS:-} -w" +GO_LDFLAGS="${GO_LDFLAGS:-}" GO_LDFLAGS="$GO_LDFLAGS -X \"github.com/docker/cli/cli/version.GitCommit=${GITCOMMIT}\"" GO_LDFLAGS="$GO_LDFLAGS -X \"github.com/docker/cli/cli/version.BuildTime=${BUILDTIME}\"" GO_LDFLAGS="$GO_LDFLAGS -X \"github.com/docker/cli/cli/version.Version=${VERSION}\"" @@ -86,7 +86,7 @@ if [ "$CGO_ENABLED" = "1" ] && [ "$GO_LINKMODE" = "static" ]; then GO_BUILDTAGS="$GO_BUILDTAGS osusergo" fi if [ -n "$GO_STRIP" ]; then - GO_LDFLAGS="$GO_LDFLAGS -s" + GO_LDFLAGS="$GO_LDFLAGS -s -w" fi export GO_LDFLAGS="$GO_LDFLAGS" # https://github.com/koalaman/shellcheck/issues/2064