From 2d838d7699dec94a511bba26a90f6b04af62fa90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=2E=20Mert=20Y=C4=B1ld=C4=B1ran?= Date: Wed, 16 Feb 2022 22:33:19 +0300 Subject: [PATCH] Don't statically link the CLI (#822) --- cli/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/Makefile b/cli/Makefile index 9816ae371..7a78898df 100644 --- a/cli/Makefile +++ b/cli/Makefile @@ -22,7 +22,7 @@ build-debug: ## Build mizu CLI for debug ${MAKE} build-base build: - export LDFLAGS_EXT='-extldflags=-static -s -w' + export LDFLAGS_EXT='-s -w' ${MAKE} build-base build-base: ## Build mizu CLI binary (select platform via GOOS / GOARCH env variables).