Skip to content

Commit 086395b

Browse files
Merge branch 'develop-fix-ga-macosx'. Close #275.
2 parents 799c2b0 + 3b5b3e0 commit 086395b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/build-macos.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ jobs:
66
build:
77
runs-on: macos-latest
88
env:
9-
LDFLAGS: "-L/usr/local/opt/llvm@14/lib"
10-
CPPFLAGS: "-I/usr/local/opt/llvm@14/include"
9+
LDFLAGS: "-L/opt/homebrew/opt/llvm@14/lib"
10+
CPPFLAGS: "-I/opt/homebrew/opt/llvm@14/include"
1111

1212
steps:
1313
- name: Checkout
@@ -18,7 +18,7 @@ jobs:
1818
brew install cmake gmp boost tbb llvm@14 apron sqlite
1919
- name: Adjust path
2020
run:
21-
echo "/usr/local/opt/llvm@14/bin" >> $GITHUB_PATH
21+
echo "/opt/homebrew/opt/llvm@14/bin" >> $GITHUB_PATH
2222
- name: Test LLVM
2323
run: |
2424
which llvm-config
@@ -27,7 +27,7 @@ jobs:
2727
mkdir build
2828
cd build
2929
cmake \
30-
-DCMAKE_INSTALL_PREFIX="/usr/local/opt/ikos" \
30+
-DCMAKE_INSTALL_PREFIX="$HOME/ikos" \
3131
-DCMAKE_BUILD_TYPE="Debug" \
3232
-DLLVM_CONFIG_EXECUTABLE="$(which llvm-config)" \
3333
-DPYTHON_EXECUTABLE:FILEPATH="$(which python3)" \
@@ -36,7 +36,7 @@ jobs:
3636
make install
3737
- name: Add IKOS to the path
3838
run: |
39-
echo "/usr/local/opt/ikos/bin" >> $GITHUB_PATH
39+
echo "$HOME/ikos/bin" >> $GITHUB_PATH
4040
- name: Confirm that it runs
4141
run: |
4242
ikos --version

0 commit comments

Comments
 (0)