Skip to content

Commit 03d2ebd

Browse files
committed
editing...
1 parent 8c50e68 commit 03d2ebd

File tree

2 files changed

+6
-9
lines changed

2 files changed

+6
-9
lines changed

.github/workflows/mac.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,9 @@ jobs:
2828
- name: Deps
2929
# git build-essential wget unzip aspcud m4 pkg-config libshp-dev libopenblas-dev liblapacke-dev
3030
run: |
31-
brew install libomp aspcud gcc
32-
export LDFLAGS="-L/opt/homebrew/opt/libomp/lib"
33-
export CPPFLAGS="-I/opt/homebrew/opt/libomp/include"
34-
export CC=gcc-13
35-
export CXX=g++-13
31+
brew install llvm libomp aspcud
32+
export CC=/usr/local/opt/llvm/bin/clang
33+
export CXX=/usr/local/opt/llvm/bin/clang++
3634
3735
- name: Use OCaml
3836
uses: ocaml/setup-ocaml@v3

.github/workflows/os.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,9 @@ jobs:
3131
3232
- name: Deps
3333
run: |
34-
brew install libomp gcc
35-
export CC=gcc-13
36-
export CXX=g++-13
37-
export PKG_CONFIG_PATH="$(brew --prefix openblas)/lib/pkgconfig:$PKG_CONFIG_PATH"
34+
brew install llvm libomp
35+
export CC=/usr/local/opt/llvm/bin/clang
36+
export CXX=/usr/local/opt/llvm/bin/clang++
3837
3938
- run: opam depext owl --with-test
4039

0 commit comments

Comments
 (0)