1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-09-08 00:40:17 +00:00

Merge pull request #522 from a740g/woa-llvm-mingw-upgrade

Update to LLVM-MinGW 20240619 with LLVM 18.1.8 for WoA
This commit is contained in:
Samuel Gomes 2024-07-26 18:39:06 +05:30 committed by GitHub
commit 35d901fa6e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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/20240320/llvm-mingw-20240320-ucrt-aarch64.zip"
set MINGW_DIR=llvm-mingw-20240320-ucrt-aarch64
set URL="https://github.com/mstorsjo/llvm-mingw/releases/download/20240619/llvm-mingw-20240619-ucrt-aarch64.zip"
set MINGW_DIR=llvm-mingw-20240619-ucrt-aarch64
) else (
set URL="https://github.com/mstorsjo/llvm-mingw/releases/download/20240320/llvm-mingw-20240320-ucrt-armv7.zip"
set MINGW_DIR=llvm-mingw-20240320-ucrt-armv7
set URL="https://github.com/mstorsjo/llvm-mingw/releases/download/20240619/llvm-mingw-20240619-ucrt-armv7.zip"
set MINGW_DIR=llvm-mingw-20240619-ucrt-armv7
)
set MINGW_TEMP_FILE=temp.zip
) else (