Skip to content

Commit

Permalink
Try llvm@12
Browse files Browse the repository at this point in the history
  • Loading branch information
jmeyers314 committed Feb 5, 2025
1 parent ce484fc commit eeeb2a9
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,12 +89,12 @@ jobs:
CIBW_BUILD_VERBOSITY: 3
CIBW_BEFORE_BUILD: >-
pip install -U pybind11-global &&
brew install llvm libomp fftw eigen
brew install llvm@12 libomp@12 fftw eigen
CIBW_ENVIRONMENT: >-
CC=/usr/local/opt/llvm/bin/clang
CXX=/usr/local/opt/llvm/bin/clang++
LDFLAGS="-L/usr/local/opt/llvm/lib -Wl,-rpath,/usr/local/opt/llvm/lib"
CPPFLAGS="-I/usr/local/opt/llvm/include"
CC=/usr/local/opt/llvm@12/bin/clang
CXX=/usr/local/opt/llvm@12/bin/clang++
LDFLAGS="-L/usr/local/opt/llvm@12/lib -Wl,-rpath,/usr/local/opt/llvm@12/lib"
CPPFLAGS="-I/usr/local/opt/llvm@12/include"
MACOSX_DEPLOYMENT_TARGET=11.0
CIBW_BEFORE_TEST: pip install -U pytest pytest-timeout pytest-cov pytest-xdist
CIBW_TEST_COMMAND: pytest --skip_gha {package}/tests
Expand Down Expand Up @@ -126,13 +126,13 @@ jobs:
CIBW_BUILD_VERBOSITY: 3
CIBW_BEFORE_BUILD: >-
pip install -U pybind11-global &&
brew install llvm libomp fftw eigen
brew install llvm@12 libomp@12 fftw eigen
CIBW_ENVIRONMENT: >-
CC=/opt/homebrew/opt/llvm/bin/clang
CXX=/opt/homebrew/opt/llvm/bin/clang++
LDFLAGS="-L/opt/homebrew/opt/llvm/lib -Wl,-rpath,/opt/homebrew/opt/llvm/lib"
CPPFLAGS="-I/opt/homebrew/opt/llvm/include"
PATH="/opt/homebrew/opt/llvm/bin:$PATH"
CC=/opt/homebrew/opt/llvm@12/bin/clang
CXX=/opt/homebrew/opt/llvm@12/bin/clang++
LDFLAGS="-L/opt/homebrew/opt/llvm@12/lib -Wl,-rpath,/opt/homebrew/opt/llvm@12/lib"
CPPFLAGS="-I/opt/homebrew/opt/llvm@12/include"
PATH="/opt/homebrew/opt/llvm@12/bin:$PATH"
FFTW_DIR="/opt/homebrew"
MACOSX_DEPLOYMENT_TARGET=11.0
CIBW_BEFORE_TEST: pip install -U pytest pytest-timeout pytest-cov pytest-xdist
Expand Down

0 comments on commit eeeb2a9

Please sign in to comment.