Skip to content

Commit 89367e4

Browse files
committed
editing...
1 parent de98b65 commit 89367e4

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.github/workflows/mac.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ jobs:
3838
export CC=/opt/homebrew/opt/llvm/bin/clang
3939
export CXX=/opt/homebrew/opt/llvm/bin/clang++
4040
which clang
41-
ln -s /opt/homebrew/opt/llvm/bin/clang /usr/bin/clang
4241
4342
- name: Use OCaml
4443
uses: ocaml/setup-ocaml@v3

.github/workflows/os.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,13 @@ jobs:
3131
3232
- name: Deps
3333
run: |
34-
brew install llvm libomp
35-
export CC=/usr/local/opt/llvm/bin/clang
36-
export CXX=/usr/local/opt/llvm/bin/clang++
34+
brew install llvm libomp aspcud
35+
export PATH="/opt/homebrew/opt/llvm/bin:$PATH"
36+
export LDFLAGS="-L/opt/homebrew/opt/llvm/lib"
37+
export CPPFLAGS="-I/opt/homebrew/opt/llvm/include"
38+
export CC=/opt/homebrew/opt/llvm/bin/clang
39+
export CXX=/opt/homebrew/opt/llvm/bin/clang++
40+
which clang
3741
3842
- run: opam depext owl --with-test
3943

0 commit comments

Comments
 (0)