From 4094ee3b3cdf7960464c55f8095a865f8d675772 Mon Sep 17 00:00:00 2001 From: Samuel Gomes Date: Sat, 7 Dec 2024 20:48:21 +0530 Subject: [PATCH] Update to latest supported llvm-mingw --- setup_mingw.cmd | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/setup_mingw.cmd b/setup_mingw.cmd index e3ba0e9af..427399250 100644 --- a/setup_mingw.cmd +++ b/setup_mingw.cmd @@ -65,19 +65,19 @@ rem MINGW_DIR is actually the internal directory name inside the zip file rem It needs to be updated whenever the toolchains are updated if "%ARCH%" == "ARM" ( if %BITS% == 64 ( - set URL="https://github.com/mstorsjo/llvm-mingw/releases/download/20241030/llvm-mingw-20241030-ucrt-aarch64.zip" - set MINGW_DIR=llvm-mingw-20241030-ucrt-aarch64 + set URL="https://github.com/mstorsjo/llvm-mingw/releases/download/20241203/llvm-mingw-20241203-ucrt-aarch64.zip" + set MINGW_DIR=llvm-mingw-20241203-ucrt-aarch64 ) else ( - set URL="https://github.com/mstorsjo/llvm-mingw/releases/download/20241030/llvm-mingw-20241030-ucrt-armv7.zip" - set MINGW_DIR=llvm-mingw-20241030-ucrt-armv7 + set URL="https://github.com/mstorsjo/llvm-mingw/releases/download/20241203/llvm-mingw-20241203-ucrt-armv7.zip" + set MINGW_DIR=llvm-mingw-20241203-ucrt-armv7 ) ) else ( if %BITS% == 64 ( - set URL="https://github.com/mstorsjo/llvm-mingw/releases/download/20241030/llvm-mingw-20241030-ucrt-x86_64.zip" - set MINGW_DIR=llvm-mingw-20241030-ucrt-x86_64 + set URL="https://github.com/mstorsjo/llvm-mingw/releases/download/20241203/llvm-mingw-20241203-ucrt-x86_64.zip" + set MINGW_DIR=llvm-mingw-20241203-ucrt-x86_64 ) else ( - set URL="https://github.com/mstorsjo/llvm-mingw/releases/download/20241030/llvm-mingw-20241030-ucrt-i686.zip" - set MINGW_DIR=llvm-mingw-20241030-ucrt-i686 + set URL="https://github.com/mstorsjo/llvm-mingw/releases/download/20241203/llvm-mingw-20241203-ucrt-i686.zip" + set MINGW_DIR=llvm-mingw-20241203-ucrt-i686 ) )