We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36c9dc9 commit cdf3cd1Copy full SHA for cdf3cd1
1 file changed
.github/workflows/ci.yml
@@ -41,11 +41,11 @@ jobs:
41
bundler-cache: true
42
cargo-cache: true
43
44
- # Work around LLVM 20 clang header issues on Windows
+ # Work around LLVM 20 clang header issues on Windows by disabling AVX-512 FP16
45
- name: Set Windows bindgen flags
46
if: runner.os == 'Windows'
47
run: |
48
- $extra = "-D__AMXAVX512INTRIN_H -D__AVX10_2CONVERTINTRIN_H -D__AVX10_2_512CONVERTINTRIN_H -D__AVX10_2_512NIINTRIN_H -D__AVX512FP16INTRIN_H -D__AVX512VLFP16INTRIN_H"
+ $extra = "-mno-avx512fp16"
49
if ($env:BINDGEN_EXTRA_CLANG_ARGS) {
50
echo "BINDGEN_EXTRA_CLANG_ARGS=$env:BINDGEN_EXTRA_CLANG_ARGS $extra" >> $env:GITHUB_ENV
51
} else {
0 commit comments