Skip to content

Commit f0715d1

Browse files
committed
Debug
1 parent 8827312 commit f0715d1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ endif
3838

3939
build:
4040
ifeq ($(UNAME_S),Darwin)
41-
install_name_tool -id @rpath/libcodex.dylib $(LIBS_DIR)/libcodex.dylib
41+
# install_name_tool -id @rpath/libcodex.dylib $(LIBS_DIR)/libcodex.dylib
4242
endif
4343
CGO_ENABLED=1 CGO_CFLAGS="$(CGO_CFLAGS)" CGO_LDFLAGS="$(CGO_LDFLAGS)" go build -o $(BIN_NAME) main.go
4444

@@ -47,7 +47,7 @@ ifeq ($(OS),Windows_NT)
4747
pwsh -File $(CURDIR)/.github/scripts/run-windows.ps1 -BinaryName $(BIN_NAME)
4848
else ifeq ($(UNAME_S),Darwin)
4949
# Instead of relying on install_name_tool, we can define DYLD_LIBRARY_PATH
50-
# DYLD_LIBRARY_PATH=$(LIBS_DIR) ./$(BIN_NAME)
50+
DYLD_LIBRARY_PATH=$(LIBS_DIR) ./$(BIN_NAME)
5151
./$(BIN_NAME)
5252
else
5353
./$(BIN_NAME)

0 commit comments

Comments
 (0)