From b25b46466e6c4879d45f29898dadd979283fc767 Mon Sep 17 00:00:00 2001 From: Qianqian Fang Date: Sun, 20 Aug 2023 23:28:09 -0400 Subject: [PATCH] try cmake on mac --- .github/workflows/build_all.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_all.yml b/.github/workflows/build_all.yml index 13fd764e..d7fbd50c 100644 --- a/.github/workflows/build_all.yml +++ b/.github/workflows/build_all.yml @@ -148,7 +148,7 @@ jobs: make AR=g++ BACKEND=cudastatic USERLINKOPT='lib/libzmat.a -Wl,-Bstatic -lgomp -Wl,-Bdynamic' ldd ../bin/mcx elif [[ "$RUNNER_OS" == "macOS" ]]; then - mkdir build && cmake .. && make + mkdir build && cd build && cmake .. && make make BACKEND=cudastatic otool -L ../bin/mcx else