(svn r24573) -Fix: hopefully get packing right on Mingw's gcc 4.7

This commit is contained in:
rubidium 2012-10-04 15:44:09 +00:00
parent d49bd2997b
commit a023c9ae68
1 changed files with 3 additions and 0 deletions

View File

@ -1488,6 +1488,9 @@ make_cflags_and_ldflags() {
if [ $cc_version -ge 44 ]; then
LDFLAGS_BUILD="$LDFLAGS_BUILD -static-libgcc -static-libstdc++"
fi
if [ $cc_version -ge 47 ]; then
CFLAGS="$CFLAGS -mno-ms-bitfields"
fi
fi
fi