From c2b1d2036c5e16f3f01251c32969682d8731a415 Mon Sep 17 00:00:00 2001 From: Arnaud Date: Wed, 15 Oct 2025 18:51:39 +0200 Subject: [PATCH] debug --- .github/workflows/ci.yml | 24 ++++++++++++------------ Makefile | 2 +- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9a40ae4..84d669d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,25 +10,25 @@ jobs: strategy: matrix: target: - - os: ubuntu-latest - name: linux - cpu: amd64 - lib_ext: so + # - os: ubuntu-latest + # name: linux + # cpu: amd64 + # lib_ext: so - - os: ubuntu-24.04-arm - cpu: arm64 - name: linux - lib_ext: so + # - os: ubuntu-24.04-arm + # cpu: arm64 + # name: linux + # lib_ext: so - os: macos-latest lib_ext: so name: macos cpu: arm64 - - os: windows-latest - cpu: amd64 - name: windows - lib_ext: dll + # - os: windows-latest + # cpu: amd64 + # name: windows + # lib_ext: dll steps: - name: Check out sources diff --git a/Makefile b/Makefile index 837df51..1d11fe8 100644 --- a/Makefile +++ b/Makefile @@ -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,-rpath,@executable_path/libs/libcodex.dylib else CGO_CFLAGS := -I$(LIBS_DIR) CGO_LDFLAGS := -L$(LIBS_DIR) -lcodex -Wl,-rpath,$(LIBS_DIR)