1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-05-02 13:40:13 +00:00

Update to llvm-mingw 20240320 for WoA targets

This commit is contained in:
Samuel Gomes 2024-03-24 23:42:50 +05:30
parent ae8c5e283d
commit 4d771e3a9a
2 changed files with 5 additions and 5 deletions

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

View file

@ -230,7 +230,7 @@ IF MacOSX THEN BATCHFILE_EXTENSION = ".command"
DIM inlinedatastr(0 TO 255) AS STRING
FOR i = 0 TO 255
inlinedatastr(i) = str2(i) + ","
inlinedatastr(i) = str2$(i) + ","
NEXT