summaryrefslogtreecommitdiffstats
path: root/win/makefile.vc
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2011-03-22 10:37:11 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2011-03-22 10:37:11 (GMT)
commit34d54589721d694a76e1dc19d81ac93b68424281 (patch)
treeb2b2a359e40a92a35663abb94d1ef5ccaf04a89b /win/makefile.vc
parentdee2f1612dea8ead0ec7def7896d5721d6681035 (diff)
downloadtcl-34d54589721d694a76e1dc19d81ac93b68424281.zip
tcl-34d54589721d694a76e1dc19d81ac93b68424281.tar.gz
tcl-34d54589721d694a76e1dc19d81ac93b68424281.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/makefile.vc')
-rw-r--r--win/makefile.vc2
1 files changed, 1 insertions, 1 deletions
diff --git a/win/makefile.vc b/win/makefile.vc
index b508804..426c907 100644
--- a/win/makefile.vc
+++ b/win/makefile.vc
@@ -367,7 +367,7 @@ TCL_CFLAGS = $(BASE_CFLAGS) $(OPTDEFINES)
#---------------------------------------------------------------------
!if $(DEBUG)
-ldebug = -debug:full -debugtype:cv
+ldebug = -debug -debugtype:cv
!else
ldebug = -release -opt:ref -opt:icf,3
!endif