File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -9,19 +9,25 @@ source "$(cd "$(dirname "$0")" && pwd)/../shared.sh"
99MINGW_ARCHIVE_32=" i686-14.1.0-release-posix-dwarf-msvcrt-rt_v12-rev0.7z"
1010MINGW_ARCHIVE_64=" x86_64-14.1.0-release-posix-seh-msvcrt-rt_v12-rev0.7z"
1111
12+ echo " running install-mingw.sh"
13+
1214if isWindows && isKnownToBeMingwBuild; then
15+ echo " I am mingw on Windows"
1316 case " ${CI_JOB_NAME} " in
1417 * i686* )
1518 bits=32
1619 mingw_archive=" ${MINGW_ARCHIVE_32} "
20+ echo " I have 32-bits"
1721 ;;
1822 * x86_64* )
1923 bits=64
2024 mingw_archive=" ${MINGW_ARCHIVE_64} "
25+ echo " I have 64-bits"
2126 ;;
2227 * aarch64* )
2328 # aarch64 is a cross-compiled target. Use the x86_64
2429 # mingw, since that's the host architecture.
30+ echo " I should not be here"
2531 bits=64
2632 mingw_archive=" ${MINGW_ARCHIVE_64} "
2733 ;;
@@ -31,6 +37,7 @@ if isWindows && isKnownToBeMingwBuild; then
3137 exit 1
3238 ;;
3339 esac
40+ exit 1
3441
3542 mingw_dir=" mingw${bits} "
3643
You can’t perform that action at this time.
0 commit comments