diff options
author | jan <jan@noemail.net> | 2011-03-26 06:35:28 (GMT) |
---|---|---|
committer | jan <jan@noemail.net> | 2011-03-26 06:35:28 (GMT) |
commit | 9a25aa12e74203c87a6b2b34b6994de7cf4eb37c (patch) | |
tree | 5fdd6154fdc4eafa9fa2cc80e666db644d9603dd /win | |
parent | b7ea224aa68d5b919c694e9575d8cecff94aee9a (diff) | |
download | tk-9a25aa12e74203c87a6b2b34b6994de7cf4eb37c.zip tk-9a25aa12e74203c87a6b2b34b6994de7cf4eb37c.tar.gz tk-9a25aa12e74203c87a6b2b34b6994de7cf4eb37c.tar.bz2 |
The -debug:full option is not supported when using the modern versions of link.exe included with MSVC, use -debug instead
FossilOrigin-Name: 970fa676ffdbe670270c1a4cc2e49d3045158262
Diffstat (limited to 'win')
-rwxr-xr-x | win/configure | 2 | ||||
-rw-r--r-- | win/makefile.vc | 2 | ||||
-rw-r--r-- | win/tcl.m4 | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/win/configure b/win/configure index 19548bf..92b5873 100755 --- a/win/configure +++ b/win/configure @@ -1573,7 +1573,7 @@ EOF EXTRA_CFLAGS="" CFLAGS_WARNING="-W3" - LDFLAGS_DEBUG="-debug:full" + LDFLAGS_DEBUG="-debug" LDFLAGS_OPTIMIZE="-release" # Specify the CC output file names based on the target name diff --git a/win/makefile.vc b/win/makefile.vc index 4a94819..444db85 100644 --- a/win/makefile.vc +++ b/win/makefile.vc @@ -402,7 +402,7 @@ WISH_CFLAGS = $(BASE_CFLAGS) $(TK_DEFINES) #--------------------------------------------------------------------- !if $(DEBUG) -ldebug = -debug:full -debugtype:cv +ldebug = -debug -debugtype:cv !else ldebug = -release -opt:ref -opt:icf,3 !endif @@ -747,7 +747,7 @@ AC_DEFUN([SC_CONFIG_CFLAGS], [ EXTRA_CFLAGS="" CFLAGS_WARNING="-W3" - LDFLAGS_DEBUG="-debug:full" + LDFLAGS_DEBUG="-debug" LDFLAGS_OPTIMIZE="-release" # Specify the CC output file names based on the target name |