diff options
author | davygrvy <davygrvy@pobox.com> | 2004-01-30 08:10:11 (GMT) |
---|---|---|
committer | davygrvy <davygrvy@pobox.com> | 2004-01-30 08:10:11 (GMT) |
commit | 28e6f3066b969b869db7199aa2614ffa83d95385 (patch) | |
tree | c363d9bf8661fd44e362971c4bc0e25af1897ce3 /win/makefile.vc | |
parent | f0908a739b98b2f21b272ec808d6d22a3739356e (diff) | |
download | tcl-28e6f3066b969b869db7199aa2614ffa83d95385.zip tcl-28e6f3066b969b869db7199aa2614ffa83d95385.tar.gz tcl-28e6f3066b969b869db7199aa2614ffa83d95385.tar.bz2 |
* win/makefile.vc: Use the -GZ compiler switch when building for
symbols. This is supposed to emulate the release build better to
avoid hiding problems that would only show themselves in a release
build.
Diffstat (limited to 'win/makefile.vc')
-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 9bfc9cf..5128159 100644 --- a/win/makefile.vc +++ b/win/makefile.vc @@ -12,7 +12,7 @@ # Copyright (c) 2001-2004 David Gravereaux. # #------------------------------------------------------------------------------ -# RCS: @(#) $Id: makefile.vc,v 1.119 2004/01/16 02:42:45 davygrvy Exp $ +# RCS: @(#) $Id: makefile.vc,v 1.120 2004/01/30 08:10:11 davygrvy Exp $ #------------------------------------------------------------------------------ !if "$(MSVCDIR)" == "" @@ -352,9 +352,9 @@ cdebug = !endif !else if "$(MACHINE)" == "IA64" ### Warnings are too many, can't support warnings into errors. -cdebug = -Z7 -Od +cdebug = -Z7 -Od -GZ !else -cdebug = -Z7 -WX -Od +cdebug = -Z7 -WX -Od -GZ !endif ### Declarations common to all compiler options |