This commit is contained in:
Arnaud 2025-10-15 19:10:41 +02:00
parent 2f5cc3e4e9
commit 94eb7514dc
No known key found for this signature in database
GPG Key ID: 20E40A5D3110766F

View File

@ -5,7 +5,7 @@ LIBS_DIR := $(abspath ./libs)
UNAME_S := $(shell uname -s)
ifeq ($(UNAME_S),Darwin)
CGO_CFLAGS := -I$(LIBS_DIR)
CGO_LDFLAGS := -L$(LIBS_DIR) -lcodex -Wl,-rpath,@executable_path
CGO_LDFLAGS := -L$(LIBS_DIR) -lcodex -Wl
else
CGO_CFLAGS := -I$(LIBS_DIR)
CGO_LDFLAGS := -L$(LIBS_DIR) -lcodex -Wl,-rpath,$(LIBS_DIR)