]> wimlib.net Git - wimlib/commit
windows-build.sh: ensure that -static-libgcc is used with MSYS2 gcc
authorEric Biggers <ebiggers3@gmail.com>
Wed, 7 Feb 2024 06:26:50 +0000 (22:26 -0800)
committerEric Biggers <ebiggers3@gmail.com>
Wed, 7 Feb 2024 06:26:50 +0000 (22:26 -0800)
commitc63bf5f80447598c4a83244f2a92dd65209feeb4
tree25c5115efb8dcf78ae852c2bdb2acc65ef91bfef
parent22a1e24e1128d4aff52ec778dfbf189475ecf074
windows-build.sh: ensure that -static-libgcc is used with MSYS2 gcc

In MSYS2 MINGW32, the gcc version is "i686-w64-mingw32-cc.exe (Rev4,
Built by MSYS2 project) 13.2.0" which does not contain the string
"(GCC)" as expected.  Similarly for MSYS2 MINGW64.  This means that
-static-libgcc does not get used as intended.  As a quick fix, just
invert the check, so gcc is now detected by checking for not clang..
tools/windows-build.sh