diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-09-27 09:18:36 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-09-27 09:18:36 (GMT) |
commit | 790f8f7114d0cc7b44cbaddc66e36c877c9c55b6 (patch) | |
tree | 7446b6301d870900cbe5cf5a5f15e2f67d558d26 /win/tcl.m4 | |
parent | 38f8605a8d202951bbf792a4813b9b48a20910fb (diff) | |
download | tcl-790f8f7114d0cc7b44cbaddc66e36c877c9c55b6.zip tcl-790f8f7114d0cc7b44cbaddc66e36c877c9c55b6.tar.gz tcl-790f8f7114d0cc7b44cbaddc66e36c877c9c55b6.tar.bz2 |
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 | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -634,7 +634,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([ @@ -665,7 +665,6 @@ AC_DEFUN([SC_CONFIG_CFLAGS], [ extra_ldflags="$extra_ldflags -municode" else extra_cflags="$extra_cflags -DTCL_BROKEN_MAINARGS" - extra_ldflags="$extra_ldflags -static-libgcc" fi fi |