Skip to content

Commit befc6ef

Browse files
committed
windows-gnu: update C toolchain
1 parent 2fcbda6 commit befc6ef

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/ci/scripts/install-mingw.sh

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@ IFS=$'\n\t'
66

77
source "$(cd "$(dirname "$0")" && pwd)/../shared.sh"
88

9-
MINGW_ARCHIVE_32="i686-14.1.0-release-posix-dwarf-msvcrt-rt_v12-rev0.7z"
10-
MINGW_ARCHIVE_64="x86_64-14.1.0-release-posix-seh-msvcrt-rt_v12-rev0.7z"
9+
MINGW_ARCHIVE_32="i686-14.2.0-release-posix-dwarf-msvcrt-rt_v12-rev2.7z"
10+
MINGW_ARCHIVE_64="x86_64-14.2.0-release-posix-seh-msvcrt-rt_v12-rev2.7z"
11+
TMP_URL="https://github.com/niXman/mingw-builds-binaries/releases/download/14.2.0-rt_v12-rev2/"
1112

1213
if isWindows && isKnownToBeMingwBuild; then
1314
case "${CI_JOB_NAME}" in
@@ -40,7 +41,7 @@ if isWindows && isKnownToBeMingwBuild; then
4041

4142
mingw_dir="mingw${bits}"
4243

43-
curl -o mingw.7z "${MIRRORS_BASE}/${mingw_archive}"
44+
curl -o mingw.7z "${TMP_URL}/${mingw_archive}"
4445
7z x -y mingw.7z > /dev/null
4546
ciCommandAddPath "$(cygpath -m "$(pwd)/${mingw_dir}/bin")"
4647

0 commit comments

Comments
 (0)