Skip to content

Commit

Permalink
ci: fix build error for mac
Browse files Browse the repository at this point in the history
  • Loading branch information
dongwlin committed Dec 11, 2024
1 parent 523a1b8 commit 18b557b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -220,8 +220,8 @@ jobs:

- name: Build MAABH3
env:
CC: "/usr/local/opt/llvm/bin/clang"
CXX: "/usr/local/opt/llvm/bin/clang++"
CC: "$(brew --prefix llvm)/bin/clang"
CXX: "$(brew --prefix llvm)/bin/clang++"
run: |
cmake --preset 'NinjaMulti' \
-DARCH='${{ matrix.arch == 'x86_64' && 'x64' || 'arm64' }}' \
Expand Down

0 comments on commit 18b557b

Please sign in to comment.