-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
choco install clang on win may be unnecessary
- Loading branch information
Showing
1 changed file
with
7 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -57,21 +57,20 @@ jobs: | |
Invoke-VSDevEnvironment | ||
Get-Command rc.exe | Format-Table -AutoSize | ||
- name: Install Clang with OpenMP support using Chocolatey | ||
if: runner.os == 'Windows' | ||
run: | | ||
choco install -y llvm --params "clang;compiler=clang" --version 18.1.0 | ||
$env:PATH = "C:\Program Files\LLVM\bin;$env:PATH" | ||
clang --version | ||
# - name: Install Clang with OpenMP support using Chocolatey | ||
# if: runner.os == 'Windows' | ||
# run: | | ||
# choco install -y llvm --params "clang;compiler=clang" --version 18.1.0 | ||
# $env:PATH = "C:\Program Files\LLVM\bin;$env:PATH" | ||
# clang --version | ||
|
||
- name: Build wheels via cibuildwheel | ||
uses: pypa/[email protected] | ||
env: | ||
CIBW_BUILD: ${{ matrix.python[0] }}-${{ matrix.buildplat[1] }}* | ||
CIBW_ARCHS: ${{ matrix.buildplat[2] }} | ||
# define CC, CXX so meson will use clang-cl instead of MSVC | ||
# CC: clang-cl | ||
# CXX: clang-cl | ||
|
||
# CC: gcc | ||
# CXX: g++ | ||
# -Wl,-S equivalent to gcc's -Wl,--strip-debug | ||
|