Skip to content

Commit ae52ee7

Browse files
committed
Fix Windows compilation with clang version >= 17
1 parent 41caff6 commit ae52ee7

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.github/workflows/build.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ jobs:
2222
shell: bash
2323
run: |
2424
if [[ "${{ runner.os }}" == "Windows" ]] ; then
25-
choco install llvm
2625
choco install zip
2726
elif [[ "${{ runner.os }}" == "macOS" ]] ; then
2827
brew install coreutils
@@ -58,7 +57,7 @@ jobs:
5857
export is_official=true
5958
fi
6059
if [[ "${{ runner.os }}" == "Windows" ]] ; then
61-
export gn_flags='is_trivial_abi=false win_vc="C:/Program Files/Microsoft Visual Studio/2022/Enterprise/VC" win_toolchain_version="17.9" win_sdk="C:\\Program Files\\Windows Kits\\10" win_sdk_version="10.0.22621.0" cc="clang" cxx="clang++" clang_win="C:\Program Files\LLVM" clang_win_version="16.0.0"'
60+
export gn_flags='is_trivial_abi=false win_vc="C:/Program Files/Microsoft Visual Studio/2022/Enterprise/VC" win_toolchain_version="17.10" win_sdk="C:\\Program Files\\Windows Kits\\10" win_sdk_version="10.0.22621.0" cc="clang" cxx="clang++" clang_win="C:\Program Files\LLVM" clang_win_version="17.0.3"'
6261
if [[ "${{ matrix.mode }}" == "Debug" ]] ; then
6362
export gn_flags="$gn_flags extra_cflags=[\"-MTd\"]"
6463
else

0 commit comments

Comments
 (0)