Skip to content

Commit b591eae

Browse files
committed
LLVM 19.1.6.
1 parent 646d77c commit b591eae

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.clang-tidy

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ Checks: [
2424
-modernize-macro-to-enum,
2525
-modernize-redundant-void-arg,
2626
-modernize-use-designated-initializers,
27+
-modernize-use-integer-sign-comparison,
2728
-modernize-use-nodiscard,
2829
-modernize-use-std-numbers,
2930
-modernize-use-trailing-return-type,

build/install_llvm.bat

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
@ECHO OFF
22
@rem used for AppVeyor and GitHub Actions
33

4-
curl -fsSL -o "LLVM-19.1.5-win64.exe" "https://github.com/llvm/llvm-project/releases/download/llvmorg-19.1.5/LLVM-19.1.5-win64.exe"
5-
"LLVM-19.1.5-win64.exe" /S
4+
curl -fsSL -o "LLVM-19.1.6-win64.exe" "https://github.com/llvm/llvm-project/releases/download/llvmorg-19.1.6/LLVM-19.1.6-win64.exe"
5+
"LLVM-19.1.6-win64.exe" /S
66

77
IF /I "%~1" == "latest" (
88
git clone -q --depth=1 --branch=main https://github.com/zufuliu/llvm-utils.git

build/install_mingw.bat

+3-3
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ IF /I "%~1" == "i686" (
2525
IF /I "%~1" == "llvm" (
2626
SHIFT
2727
@rem for CI purpose only, the result binary is dynamic linked against api-ms-win-crt*.dll instead of msvcrt.dll
28-
curl -fsSL -o "llvm-mingw-20241203-ucrt-x86_64.zip" "https://github.com/mstorsjo/llvm-mingw/releases/download/20241203/llvm-mingw-20241203-ucrt-x86_64.zip"
29-
7z x -y -o"C:\" "llvm-mingw-20241203-ucrt-x86_64.zip" >NUL
30-
move /Y "C:\llvm-mingw-20241203-ucrt-x86_64" "C:\llvm-mingw"
28+
curl -fsSL -o "llvm-mingw-20241217-ucrt-x86_64.zip" "https://github.com/mstorsjo/llvm-mingw/releases/download/20241217/llvm-mingw-20241217-ucrt-x86_64.zip"
29+
7z x -y -o"C:\" "llvm-mingw-20241217-ucrt-x86_64.zip" >NUL
30+
move /Y "C:\llvm-mingw-20241217-ucrt-x86_64" "C:\llvm-mingw"
3131
)

0 commit comments

Comments
 (0)