Skip to content

Commit

Permalink
fix LLVM paths
Browse files Browse the repository at this point in the history
  • Loading branch information
lyskov committed Jan 9, 2025
1 parent 0f45191 commit 2d09a0d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,11 @@ jobs:
brew install wget coreutils xz pybind11 git
wget --no-verbose https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.0/clang+llvm-16.0.0-arm64-apple-darwin22.0.tar.xz
ls
tar -xJf clang+llvm-16.0.0-x86_64-apple-darwin.tar.xz
export PATH=$PATH:clang+llvm-16.0.0-x86_64-apple-darwin/bin
tar -xJf clang+llvm-16.0.0-arm64-apple-darwin22.0.tar.xz
export PATH=$PATH:clang+llvm-16.0.0-arm64-apple-darwin22/bin
- name: Compile
run: |
export PATH=$PATH:clang+llvm-16.0.0-x86_64-apple-darwin/bin
export PATH=$PATH:clang+llvm-16.0.0-arm64-apple-darwin22/bin
cmake CMakeLists.txt
make
make install
Expand Down

0 comments on commit 2d09a0d

Please sign in to comment.