File tree 1 file changed +7
-0
lines changed
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"
9
9
MINGW_ARCHIVE_32=" i686-14.1.0-release-posix-dwarf-msvcrt-rt_v12-rev0.7z"
10
10
MINGW_ARCHIVE_64=" x86_64-14.1.0-release-posix-seh-msvcrt-rt_v12-rev0.7z"
11
11
12
+ echo " running install-mingw.sh"
13
+
12
14
if isWindows && isKnownToBeMingwBuild; then
15
+ echo " I am mingw on Windows"
13
16
case " ${CI_JOB_NAME} " in
14
17
* i686* )
15
18
bits=32
16
19
mingw_archive=" ${MINGW_ARCHIVE_32} "
20
+ echo " I have 32-bits"
17
21
;;
18
22
* x86_64* )
19
23
bits=64
20
24
mingw_archive=" ${MINGW_ARCHIVE_64} "
25
+ echo " I have 64-bits"
21
26
;;
22
27
* aarch64* )
23
28
# aarch64 is a cross-compiled target. Use the x86_64
24
29
# mingw, since that's the host architecture.
30
+ echo " I should not be here"
25
31
bits=64
26
32
mingw_archive=" ${MINGW_ARCHIVE_64} "
27
33
;;
@@ -31,6 +37,7 @@ if isWindows && isKnownToBeMingwBuild; then
31
37
exit 1
32
38
;;
33
39
esac
40
+ exit 1
34
41
35
42
mingw_dir=" mingw${bits} "
36
43
You can’t perform that action at this time.
0 commit comments