We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 063fbff commit af2a257Copy full SHA for af2a257
.github/workflows/build_wheels.yml
@@ -230,13 +230,16 @@ jobs:
230
if: matrix.os == 'windows-latest'
231
run:
232
conan profile detect --force
233
-
234
- conan install . --output-folder=build --build=missing
+
+ conan install . --output-folder=build --build=missing -s compiler.cppstd=17 -s compiler=clang
235
236
- name: Build Wheels (Windows)
237
uses: pypa/[email protected]
238
239
env:
240
+ CC: "clang"
241
+ CXX: "clang++"
242
+ FC: "flang"
243
CIBW_BUILD: ${{ matrix.python_version }}
244
CIBW_ARCHS_WINDOWS: "native"
245
CIBW_BEFORE_BUILD: "pip install cmake ninja"
0 commit comments