diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-09-27 09:35:05 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-09-27 09:35:05 (GMT) |
commit | 3b36134fe4997423da879edc4f400e411a702901 (patch) | |
tree | e18c9a5848b9072627fffaed83b306ae00390d47 /win/tcl.m4 | |
parent | 2d6233b88ed95056ca253dc72bf44017a82bb239 (diff) | |
download | tcl-3b36134fe4997423da879edc4f400e411a702901.zip tcl-3b36134fe4997423da879edc4f400e411a702901.tar.gz tcl-3b36134fe4997423da879edc4f400e411a702901.tar.bz2 |
Cherrypick [87d1313df3] from trunk:
Workaround for [http://sourceforge.net/p/mingw/bugs/2065/|MinGW bug #2065].
Both MinGW and MinGW-w64 (32-bit) are affected.
Even though Win64 is not affected, adding -static-libgcc doesn't harm there, and we don't want to distrubute additional dll's with MinGW-compiled Tcl anyway.
Diffstat (limited to 'win/tcl.m4')
-rw-r--r-- | win/tcl.m4 | 18 |
1 files changed, 1 insertions, 17 deletions
@@ -633,7 +633,7 @@ AC_DEFUN([SC_CONFIG_CFLAGS], [ if test "${GCC}" = "yes" ; then extra_cflags="-pipe" - extra_ldflags="-pipe" + extra_ldflags="-pipe -static-libgcc" AC_CACHE_CHECK(for mingw32 version of gcc, ac_cv_win32, AC_TRY_COMPILE([ @@ -647,22 +647,6 @@ AC_DEFUN([SC_CONFIG_CFLAGS], [ if test "$ac_cv_win32" != "yes"; then AC_MSG_ERROR([${CC} cannot produce win32 executables.]) fi - - hold_cflags=$CFLAGS; CFLAGS="$CFLAGS -mwindows -municode -Dmain=xxmain" - AC_CACHE_CHECK(for working -municode linker flag, - ac_cv_municode, - AC_TRY_LINK([ - #include <windows.h> - int APIENTRY wWinMain(HINSTANCE a, HINSTANCE b, LPWSTR c, int d) {return 0;} - ], - [], - ac_cv_municode=yes, - ac_cv_municode=no) - ) - CFLAGS=$hold_cflags - if test "$ac_cv_municode" = "no" ; then - extra_ldflags="$extra_ldflags -static-libgcc" - fi fi AC_MSG_CHECKING([compiler flags]) |