Skip to content

Commit

Permalink
Different clang install?
Browse files Browse the repository at this point in the history
  • Loading branch information
Pencilcaseman committed Oct 21, 2023
1 parent 1c70147 commit 88d9e43
Showing 1 changed file with 12 additions and 7 deletions.
19 changes: 12 additions & 7 deletions .github/workflows/wheels.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -287,13 +287,18 @@ jobs:
with:
xcode-version: latest

# - name: Install Clang
# if: matrix.os == 'macos-latest'
# uses: KyleMayes/install-llvm-action@v1
# with:
# version: "15.0"
# directory: "./llvm"
# env: on

- name: Install Clang
if: matrix.os == 'macos-latest'
uses: KyleMayes/install-llvm-action@v1
with:
version: "15.0"
directory: "./llvm"
env: on
run: |
brew install llvm libomp
- name: Build Wheels
if: runner.os == 'macOS'
Expand All @@ -309,8 +314,8 @@ jobs:
GITHUB_ACTIONS: ON
LIBRAPID_GET_BLAS: OFF
LIBRAPID_GET_FFTW: OFF
CC: ./llvm/bin/clang
CXX: ./llvm/bin/clang++
CC: clang
CXX: clang++

run: |
python -m pip install cibuildwheel
Expand Down

0 comments on commit 88d9e43

Please sign in to comment.