diff options
author | patthoyts <patthoyts@users.sourceforge.net> | 2007-09-17 08:46:07 (GMT) |
---|---|---|
committer | patthoyts <patthoyts@users.sourceforge.net> | 2007-09-17 08:46:07 (GMT) |
commit | 1b04536ee562784c06d77ab661c04488641f953f (patch) | |
tree | e91b15813e3d5a1e4caaa8bb428f8852ea3e25ab /win/makefile.vc | |
parent | c938a7a6fdf6aaca13459ff404136e56fd588be6 (diff) | |
download | tcl-1b04536ee562784c06d77ab661c04488641f953f.zip tcl-1b04536ee562784c06d77ab661c04488641f953f.tar.gz tcl-1b04536ee562784c06d77ab661c04488641f953f.tar.bz2 |
Do not error on warnings for amd64 symbols build.
Diffstat (limited to 'win/makefile.vc')
-rw-r--r-- | win/makefile.vc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/win/makefile.vc b/win/makefile.vc index 7e1b5c6..294258b 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.163 2007/09/12 14:23:08 patthoyts Exp $ +# RCS: @(#) $Id: makefile.vc,v 1.164 2007/09/17 08:46:07 patthoyts Exp $ #------------------------------------------------------------------------------ # Check to see we are configured to build with MSVC (MSDEVDIR or MSVCDIR) @@ -422,11 +422,11 @@ cdebug = -O2 $(OPTIMIZATIONS) !else cdebug = !endif -!else if "$(MACHINE)" == "IA64" +!else if "$(MACHINE)" == "IA64" || "$(MACHINE)" == "AMD64" ### Warnings are too many, can't support warnings into errors. -cdebug = -Z7 -Od $(DEBUGFLAGS) +cdebug = -Zi -Od $(DEBUGFLAGS) !else -cdebug = -Z7 -WX $(DEBUGFLAGS) +cdebug = -Zi -WX $(DEBUGFLAGS) !endif ### Declarations common to all compiler options |