From f1c3a5f3e89fedd29f8985b145283a70627c1150 Mon Sep 17 00:00:00 2001 From: zufuliu Date: Thu, 5 Dec 2024 18:26:01 +0800 Subject: [PATCH] LLVM 19.1.5. --- build/install_llvm.bat | 4 ++-- build/install_mingw.bat | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/build/install_llvm.bat b/build/install_llvm.bat index cf59a812a4..c2d407f00f 100644 --- a/build/install_llvm.bat +++ b/build/install_llvm.bat @@ -1,8 +1,8 @@ @ECHO OFF @rem used for AppVeyor and GitHub Actions -curl -fsSL -o "LLVM-19.1.4-win64.exe" "https://github.com/llvm/llvm-project/releases/download/llvmorg-19.1.4/LLVM-19.1.4-win64.exe" -"LLVM-19.1.4-win64.exe" /S +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" +"LLVM-19.1.5-win64.exe" /S IF /I "%~1" == "latest" ( git clone -q --depth=1 --branch=main https://github.com/zufuliu/llvm-utils.git diff --git a/build/install_mingw.bat b/build/install_mingw.bat index b6670b1ca2..1be8838b1c 100644 --- a/build/install_mingw.bat +++ b/build/install_mingw.bat @@ -25,7 +25,7 @@ IF /I "%~1" == "i686" ( IF /I "%~1" == "llvm" ( SHIFT @rem for CI purpose only, the result binary is dynamic linked against api-ms-win-crt*.dll instead of msvcrt.dll - curl -fsSL -o "llvm-mingw-20241119-ucrt-x86_64.zip" "https://github.com/mstorsjo/llvm-mingw/releases/download/20241119/llvm-mingw-20241119-ucrt-x86_64.zip" - 7z x -y -o"C:\" "llvm-mingw-20241119-ucrt-x86_64.zip" >NUL - move /Y "C:\llvm-mingw-20241119-ucrt-x86_64" "C:\llvm-mingw" + 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" + 7z x -y -o"C:\" "llvm-mingw-20241203-ucrt-x86_64.zip" >NUL + move /Y "C:\llvm-mingw-20241203-ucrt-x86_64" "C:\llvm-mingw" )