File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -95,14 +95,17 @@ jobs:
9595 with :
9696 architecture : ' x86'
9797
98- - name : Setup LLVM for Windows ARM64
98+ - name : win_arm64 - set environment variables
9999 if : ${{ matrix.buildplat[1] == 'win_arm64' }}
100- uses : ./.github/windows_arm64_steps
100+ run : |
101+ echo "C:\Program Files\LLVM\bin" >> $env:GIHUB_PATH
102+ echo "CC=clang-cl" >> $env:GITHUB_ENV
103+ echo "CXX=clang-cl" >> $env:GITHUB_ENV
104+ echo "FC=flang" >> $env:GITHUB_ENV
101105
102106 - name : pkg-config-for-win
103107 if : runner.os == 'windows'
104108 run : |
105- choco install -y --no-progress --stoponfirstfailure --checksum 6004DF17818F5A6DBF19CB335CC92702 pkgconfiglite
106109 $CIBW = "${{ github.workspace }}/.openblas"
107110 # pkgconfig needs a complete path, and not just "./openblas since the
108111 # build is run in a tmp dir (?)
Original file line number Diff line number Diff line change 1+ pkgconf==2.5.1.post1
Original file line number Diff line number Diff line change 6161# cibuildwheel doesn't install delvewheel by default
6262if [[ $RUNNER_OS == " Windows" ]]; then
6363 python -m pip install -r $PROJECT_DIR /requirements/delvewheel_requirements.txt
64+ # pkgconf - carries out the role of pkg-config.
65+ # Alternative is pkgconfiglite that you have to install with choco
66+ python -m pip install -r $PROJECT_DIR /requirements/pkgconf.txt
6467fi
You can’t perform that action at this time.
0 commit comments