We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03d2ebd commit 07a676eCopy full SHA for 07a676e
.github/workflows/mac.yml
@@ -27,10 +27,16 @@ jobs:
27
28
- name: Deps
29
# git build-essential wget unzip aspcud m4 pkg-config libshp-dev libopenblas-dev liblapacke-dev
30
+ # brew install llvm libomp aspcud
31
+ # export CC=/usr/local/opt/llvm/bin/clang
32
+ # export CXX=/usr/local/opt/llvm/bin/clang++
33
run: |
34
brew install llvm libomp aspcud
- export CC=/usr/local/opt/llvm/bin/clang
- export CXX=/usr/local/opt/llvm/bin/clang++
35
+ export LDFLAGS="-L/opt/homebrew/opt/llvm/lib"
36
+ export CPPFLAGS="-I/opt/homebrew/opt/llvm/include"
37
+ export CC=/opt/homebrew/opt/llvm/bin/clang
38
+ export CXX=/opt/homebrew/opt/llvm/bin/clang++
39
+ which clang
40
41
- name: Use OCaml
42
uses: ocaml/setup-ocaml@v3
0 commit comments