diff options
| author | nijtmans@users.sourceforge.net <jan.nijtmans> | 2011-03-22 10:41:58 (GMT) |
|---|---|---|
| committer | nijtmans@users.sourceforge.net <jan.nijtmans> | 2011-03-22 10:41:58 (GMT) |
| commit | 3cad365e93aaa518ecbafdc307cf2c26e38ca32d (patch) | |
| tree | deab11c0aacdc17582b2c0818d686beb65e1b5aa | |
| parent | 2c2f5655e138a09128eec384ebae2ba1c2a9ee29 (diff) | |
| parent | 5705b33788984d455856eba043bc0536e88710f1 (diff) | |
| download | tcl-3cad365e93aaa518ecbafdc307cf2c26e38ca32d.zip tcl-3cad365e93aaa518ecbafdc307cf2c26e38ca32d.tar.gz tcl-3cad365e93aaa518ecbafdc307cf2c26e38ca32d.tar.bz2 | |
The -debug:full option is not supported when using the modern versions of link.exe included with MSVC, use -debug instead
| -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 |
