diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-09-23 11:27:47 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-09-23 11:27:47 (GMT) |
commit | b486039ca76d9b03ad8d9bdec1e914a4f88f88e8 (patch) | |
tree | 932250e0b9f266e822378ef03c0591ae6996729c /win/tcl.m4 | |
parent | c4175e0434a242a24610b0c3a70214885b897006 (diff) | |
parent | 5d9b0d315794199313c41559a91710addd1d4630 (diff) | |
download | tcl-b486039ca76d9b03ad8d9bdec1e914a4f88f88e8.zip tcl-b486039ca76d9b03ad8d9bdec1e914a4f88f88e8.tar.gz tcl-b486039ca76d9b03ad8d9bdec1e914a4f88f88e8.tar.bz2 |
workaround for mingw bug [http://comments.gmane.org/gmane.comp.gnu.mingw.user/41724]
Diffstat (limited to 'win/tcl.m4')
-rw-r--r-- | win/tcl.m4 | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -633,6 +633,8 @@ AC_DEFUN([SC_CONFIG_CFLAGS], [ # set various compiler flags depending on whether we are using gcc or cl if test "${GCC}" = "yes" ; then + extra_cflags="-pipe" + extra_ldflags="-pipe" AC_CACHE_CHECK(for mingw32 version of gcc, ac_cv_win32, AC_TRY_COMPILE([ @@ -663,6 +665,7 @@ 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 @@ -684,9 +687,6 @@ AC_DEFUN([SC_CONFIG_CFLAGS], [ MAKE_EXE="\${CC} -o \[$]@" LIBPREFIX="lib" - extra_cflags="$extra_cflags -pipe" - extra_ldflags="$extra_ldflags -pipe" - if test "${SHARED_BUILD}" = "0" ; then # static AC_MSG_RESULT([using static flags]) |