diff options
author | davygrvy <davygrvy> | 2002-03-21 17:48:54 (GMT) |
---|---|---|
committer | davygrvy <davygrvy> | 2002-03-21 17:48:54 (GMT) |
commit | b001c3dec57265ba058056396eb6c19e6b99db14 (patch) | |
tree | a70ac2fe75c654b9818edb2e57fb897c47020ec5 /win | |
parent | 8ec927ee5453686c58261fb86a1789a031b0cf98 (diff) | |
download | tk-b001c3dec57265ba058056396eb6c19e6b99db14.zip tk-b001c3dec57265ba058056396eb6c19e6b99db14.tar.gz tk-b001c3dec57265ba058056396eb6c19e6b99db14.tar.bz2 |
fix for bug #528441. max optimize seems to cause problems for some folks.
Diffstat (limited to 'win')
-rw-r--r-- | win/makefile.vc | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/win/makefile.vc b/win/makefile.vc index b7cb202..28933e4 100644 --- a/win/makefile.vc +++ b/win/makefile.vc @@ -12,7 +12,7 @@ # Copyright (c) 2001 Tomasoft Engineering. # #------------------------------------------------------------------------------ -# RCS: @(#) $Id: makefile.vc,v 1.51 2002/02/22 02:41:17 hobbs Exp $ +# RCS: @(#) $Id: makefile.vc,v 1.52 2002/03/21 17:48:54 davygrvy Exp $ #------------------------------------------------------------------------------ !if "$(MSVCDIR)" == "" @@ -393,8 +393,9 @@ cdebug = -Od -Zi cdebug = -Z7 -Od -WX !endif !else -# This cranks the optimization level to maximize speed -cdebug = -O2 +# This cranks the optimization level up. We can't use -02 because sometimes +# it causes problems. +cdebug = -Oti !endif # declarations common to all compiler options |