summaryrefslogtreecommitdiffstats
path: root/win
diff options
context:
space:
mode:
authorJoe Mistachkin <joe@mistachkin.com>2011-03-17 11:58:34 (GMT)
committerJoe Mistachkin <joe@mistachkin.com>2011-03-17 11:58:34 (GMT)
commit04fa2bde6b15a1ac93a0091be9f714b9f8014d1b (patch)
tree9d8fa060189b8dc4575139ed71235f62c88bdd54 /win
parent3e686781c3efcb821075da81e14c1ce366f88447 (diff)
downloadtk-04fa2bde6b15a1ac93a0091be9f714b9f8014d1b.zip
tk-04fa2bde6b15a1ac93a0091be9f714b9f8014d1b.tar.gz
tk-04fa2bde6b15a1ac93a0091be9f714b9f8014d1b.tar.bz2
The -debug:full option is not supported when using the modern versions of link.exe included with MSVC, use -debug instead.
Diffstat (limited to 'win')
-rw-r--r--win/makefile.vc4
1 files changed, 2 insertions, 2 deletions
diff --git a/win/makefile.vc b/win/makefile.vc
index 11ed0f3..9dde67c 100644
--- a/win/makefile.vc
+++ b/win/makefile.vc
@@ -486,11 +486,11 @@ TK_CFLAGS = $(TK_CFLAGS) -DUSE_TCL_STUBS
#---------------------------------------------------------------------
!if $(DEBUG)
-ldebug = -debug:full -debugtype:cv
+ldebug = -debug -debugtype:cv
!else
ldebug = -release -opt:ref -opt:icf,3
!if $(SYMBOLS)
-ldebug = $(ldebug) -debug:full -debugtype:cv
+ldebug = $(ldebug) -debug -debugtype:cv
!endif
!endif