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 ) )