From 3637d7d28e16d4beb73cea297bc9d83201bcb31f Mon Sep 17 00:00:00 2001 From: Massaki Archambault Date: Sat, 25 Sep 2021 22:19:05 -0400 Subject: [PATCH] avoid static linking --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 17e406d..5b33d98 100644 --- a/Makefile +++ b/Makefile @@ -91,7 +91,7 @@ build: lint $(BIN) .PHONY: dist dist: $(TARGET_DIR) $(SRC) - $(GOBUILD) -o=$(BIN) -a -trimpath -ldflags="-extldflags=-static" + $(GOBUILD) -o=$(BIN) -a -trimpath # docker: build the docker image