diff options
author | mdejong <mdejong@noemail.net> | 2001-06-22 08:48:00 (GMT) |
---|---|---|
committer | mdejong <mdejong@noemail.net> | 2001-06-22 08:48:00 (GMT) |
commit | d5739457a36fd1199c3322c1230510a7e4f3c44b (patch) | |
tree | 2f4391b2f5499a5a642bef306713679b388d9ad7 /win/tcl.m4 | |
parent | 97b7f870dc8c977be7667d11b0ceddc9926c417d (diff) | |
download | tcl-d5739457a36fd1199c3322c1230510a7e4f3c44b.zip tcl-d5739457a36fd1199c3322c1230510a7e4f3c44b.tar.gz tcl-d5739457a36fd1199c3322c1230510a7e4f3c44b.tar.bz2 |
* 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.
FossilOrigin-Name: 0eacd7bffd96ec3769ecfe4a7f9af104b2761aa0
Diffstat (limited to 'win/tcl.m4')
-rw-r--r-- | win/tcl.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 \[$]@" |