1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-06-30 05:10:37 +00:00

Update to llvm-mingw 20231128 with LLVM 17.0.6

This commit is contained in:
Samuel Gomes 2023-12-02 16:33:24 +05:30
parent 3086aa5757
commit d2287b72b8

View file

@ -68,11 +68,11 @@ rem MINGW_DIR is actually the internal directory name inside the zip / 7z 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/20231031/llvm-mingw-20231031-ucrt-aarch64.zip"
set MINGW_DIR=llvm-mingw-20231031-ucrt-aarch64
set URL="https://github.com/mstorsjo/llvm-mingw/releases/download/20231128/llvm-mingw-20231128-ucrt-aarch64.zip"
set MINGW_DIR=llvm-mingw-20231128-ucrt-aarch64
) else (
set URL="https://github.com/mstorsjo/llvm-mingw/releases/download/20231031/llvm-mingw-20231031-ucrt-armv7.zip"
set MINGW_DIR=llvm-mingw-20231031-ucrt-armv7
set URL="https://github.com/mstorsjo/llvm-mingw/releases/download/20231128/llvm-mingw-20231128-ucrt-armv7.zip"
set MINGW_DIR=llvm-mingw-20231128-ucrt-armv7
)
set MINGW_TEMP_FILE=temp.zip
) else (