File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 6
6
build :
7
7
runs-on : macos-latest
8
8
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"
11
11
12
12
steps :
13
13
- name : Checkout
18
18
brew install cmake gmp boost tbb llvm@14 apron sqlite
19
19
- name : Adjust path
20
20
run :
21
- echo "/usr/local /opt/llvm@14/bin" >> $GITHUB_PATH
21
+ echo "/opt/homebrew /opt/llvm@14/bin" >> $GITHUB_PATH
22
22
- name : Test LLVM
23
23
run : |
24
24
which llvm-config
27
27
mkdir build
28
28
cd build
29
29
cmake \
30
- -DCMAKE_INSTALL_PREFIX="/usr/local/opt /ikos" \
30
+ -DCMAKE_INSTALL_PREFIX="$HOME /ikos" \
31
31
-DCMAKE_BUILD_TYPE="Debug" \
32
32
-DLLVM_CONFIG_EXECUTABLE="$(which llvm-config)" \
33
33
-DPYTHON_EXECUTABLE:FILEPATH="$(which python3)" \
36
36
make install
37
37
- name : Add IKOS to the path
38
38
run : |
39
- echo "/usr/local/opt /ikos/bin" >> $GITHUB_PATH
39
+ echo "$HOME /ikos/bin" >> $GITHUB_PATH
40
40
- name : Confirm that it runs
41
41
run : |
42
42
ikos --version
You can’t perform that action at this time.
0 commit comments