diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2011-03-22 10:41:58 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2011-03-22 10:41:58 (GMT) |
commit | c4440fe73015005877039528e43e1bbb6c47f6d2 (patch) | |
tree | deab11c0aacdc17582b2c0818d686beb65e1b5aa /win | |
parent | aedde081db82a639c7bace15c1903b1a483af286 (diff) | |
parent | 18f2f092da28053c1dba8d040ee334b0040de3e1 (diff) | |
download | tcl-c4440fe73015005877039528e43e1bbb6c47f6d2.zip tcl-c4440fe73015005877039528e43e1bbb6c47f6d2.tar.gz tcl-c4440fe73015005877039528e43e1bbb6c47f6d2.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.vc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/win/makefile.vc b/win/makefile.vc index e38abe5..35aef18 100644 --- a/win/makefile.vc +++ b/win/makefile.vc @@ -452,11 +452,11 @@ STUB_CFLAGS = $(cflags) $(cdebug:-GL=) $(OPTDEFINES) #--------------------------------------------------------------------- !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 @@ -715,7 +715,7 @@ $(OUT_DIR)\tclConfig.sh: $(WINDIR)\tclConfig.sh.in @DEFS@ $(TCL_CFLAGS) @CFLAGS_DEBUG@ -nologo -c -W3 -YX -Fp$(TMP_DIR)\ -MDd @CFLAGS_OPTIMIZE@ -nologo -c -W3 -YX -Fp$(TMP_DIR)\ -MD -@LDFLAGS_DEBUG@ -nologo -machine:$(MACHINE) -debug:full -debugtype:cv +@LDFLAGS_DEBUG@ -nologo -machine:$(MACHINE) -debug -debugtype:cv @LDFLAGS_OPTIMIZE@ -nologo -machine:$(MACHINE) -release -opt:ref -opt:icf,3 @TCL_DBGX@ $(SUFX) @TCL_LIB_FILE@ $(PROJECT)$(VERSION)$(SUFX).lib |