Skip to content

Commit

Permalink
Merge pull request #585 from a740g/main
Browse files Browse the repository at this point in the history
Update to latest supported llvm-mingw
  • Loading branch information
a740g authored Dec 7, 2024
2 parents 6f7cd75 + 44b8116 commit ce9b165
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions setup_mingw.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -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
)
)

Expand Down

0 comments on commit ce9b165

Please sign in to comment.