Skip to content

Commit

Permalink
LLVM 16.0.4.
Browse files Browse the repository at this point in the history
  • Loading branch information
zufuliu committed May 19, 2023
1 parent bd198fd commit 9ad212f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions build/install_llvm.bat
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
@ECHO OFF
@rem used for AppVeyor and GitHub Actions

curl -fsSL -o "LLVM-16.0.3-win64.exe" "https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.3/LLVM-16.0.3-win64.exe"
"LLVM-16.0.3-win64.exe" /S
curl -fsSL -o "LLVM-16.0.4-win64.exe" "https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.4/LLVM-16.0.4-win64.exe"
"LLVM-16.0.4-win64.exe" /S

IF /I "%~1" == "latest" (
git clone -q --depth=1 --branch=main https://github.com/zufuliu/llvm-utils.git
CALL "llvm-utils\VS2017\install.bat" %2
) ELSE (
curl -fsSL -o "LLVM_VS2017.zip" "https://github.com/zufuliu/llvm-utils/releases/download/v23.03/LLVM_VS2017.zip"
curl -fsSL -o "LLVM_VS2017.zip" "https://github.com/zufuliu/llvm-utils/releases/download/v23.05/LLVM_VS2017.zip"
7z x -y "LLVM_VS2017.zip" >NUL
CALL "LLVM_VS2017\install.bat" %1
)
6 changes: 3 additions & 3 deletions build/install_mingw.bat
Original file line number Diff line number Diff line change
Expand Up @@ -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-20230504-ucrt-x86_64.zip" "https://github.com/mstorsjo/llvm-mingw/releases/download/20230504/llvm-mingw-20230504-ucrt-x86_64.zip"
7z x -y -o"C:\" "llvm-mingw-20230504-ucrt-x86_64.zip" >NUL
move /Y "C:\llvm-mingw-20230504-ucrt-x86_64" "C:\llvm-mingw"
curl -fsSL -o "llvm-mingw-20230517-ucrt-x86_64.zip" "https://github.com/mstorsjo/llvm-mingw/releases/download/20230517/llvm-mingw-20230517-ucrt-x86_64.zip"
7z x -y -o"C:\" "llvm-mingw-20230517-ucrt-x86_64.zip" >NUL
move /Y "C:\llvm-mingw-20230517-ucrt-x86_64" "C:\llvm-mingw"
)

0 comments on commit 9ad212f

Please sign in to comment.