From 2d7ebdedee89a34959b35c50333c247b281215a5 Mon Sep 17 00:00:00 2001 From: 0g-wh Date: Mon, 5 Aug 2024 15:53:30 +0800 Subject: [PATCH] use static linking --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 29caf943..5ffcc160 100644 --- a/Makefile +++ b/Makefile @@ -6,6 +6,10 @@ BINARY_NAME := 0gchaind MAIN_ENTRY := ./cmd/$(BINARY_NAME) DOCKER_IMAGE_NAME := 0glabs/$(PROJECT_NAME) GO_BIN ?= go +ARCH := $(shell uname -m) +WASMVM_VERSION := $(shell $(GO_BIN) list -m github.com/CosmWasm/wasmvm | sed 's/.* //') +$(shell wget https://github.com/CosmWasm/wasmvm/releases/download/$(WASMVM_VERSION)/libwasmvm_muslc.$(ARCH).a -O /lib/libwasmvm.$(ARCH).a) +LINK_STATICALLY=true GIT_BRANCH := $(shell git rev-parse --abbrev-ref HEAD) GIT_COMMIT := $(shell git rev-parse HEAD) @@ -175,7 +179,7 @@ ifeq (,$(findstring nostrip,$(COSMOS_BUILD_OPTIONS))) ldflags += -w -s endif ifeq ($(LINK_STATICALLY),true) - ldflags += -linkmode=external -extldflags "-Wl,-z,muldefs -static" + ldflags += -linkmode=external -extldflags "-Wl,-z,muldefs -static -lm" endif ldflags += $(LDFLAGS) ldflags := $(strip $(ldflags))