From deb831a64d0d9879e5864783eb98e054cb1dad10 Mon Sep 17 00:00:00 2001 From: mdejong Date: Fri, 22 Jun 2001 08:48:01 +0000 Subject: * win/configure: * win/tcl.m4 (SC_CONFIG_CFLAGS): Don't set LDFLAGS_DEBUG to -g or LDFLAGS_OPTIMIZE to -O when compiling with gcc. These flags are not needed and can cause problems with the Cygwin version of ld. --- ChangeLog | 8 ++++++++ win/configure | 4 ++-- win/tcl.m4 | 4 ++-- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index ea31e4a..edeb22e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2001-06-22 Mo DeJong + + * win/configure: + * win/tcl.m4 (SC_CONFIG_CFLAGS): Don't set LDFLAGS_DEBUG + to -g or LDFLAGS_OPTIMIZE to -O when compiling with gcc. + These flags are not needed and can cause problems with + the Cygwin version of ld. + 2001-06-18 Donal K. Fellows * tests/unixInit.test (unixInit-1.2,unixInit-2.8): Added test for diff --git a/win/configure b/win/configure index c8af0cc..1a62d06 100755 --- a/win/configure +++ b/win/configure @@ -1220,8 +1220,8 @@ echo "configure:1193: checking whether $ld_prog supports -shared option" >&5 CFLAGS_DEBUG=-g CFLAGS_OPTIMIZE=-O CFLAGS_WARNING="-Wall -Wconversion" - LDFLAGS_DEBUG=-g - LDFLAGS_OPTIMIZE=-O + LDFLAGS_DEBUG= + LDFLAGS_OPTIMIZE= # Specify the CC output file names based on the target name CC_OBJNAME="-o \$@" diff --git a/win/tcl.m4 b/win/tcl.m4 index cc719dd..ba58cad 100644 --- a/win/tcl.m4 +++ b/win/tcl.m4 @@ -428,8 +428,8 @@ AC_DEFUN(SC_CONFIG_CFLAGS, [ CFLAGS_DEBUG=-g CFLAGS_OPTIMIZE=-O CFLAGS_WARNING="-Wall -Wconversion" - LDFLAGS_DEBUG=-g - LDFLAGS_OPTIMIZE=-O + LDFLAGS_DEBUG= + LDFLAGS_OPTIMIZE= # Specify the CC output file names based on the target name CC_OBJNAME="-o \[$]@" -- cgit v0.12