diff options
author | davygrvy <davygrvy@noemail.net> | 2002-06-14 14:42:20 (GMT) |
---|---|---|
committer | davygrvy <davygrvy@noemail.net> | 2002-06-14 14:42:20 (GMT) |
commit | e0c39b8577b33e475aa848db9a7e67bc699f3910 (patch) | |
tree | 5e42e8f24aae5f375a02ba02cbe07ded0c42e1bb /win | |
parent | 22e4ee232c8cba11c38b1bc6bd14ab7d4bab39a4 (diff) | |
download | tcl-e0c39b8577b33e475aa848db9a7e67bc699f3910.zip tcl-e0c39b8577b33e475aa848db9a7e67bc699f3910.tar.gz tcl-e0c39b8577b33e475aa848db9a7e67bc699f3910.tar.bz2 |
The test for compiler optimizations was in error. Thanks goes to Roy Terry
<royterry@earthlink.net> for his assistence with this.
FossilOrigin-Name: b7bbb19323f963fcbbf931b71caef88c5c758136
Diffstat (limited to 'win')
-rw-r--r-- | win/rules.vc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/rules.vc b/win/rules.vc index 1c0db8e..bb9cc30 100644 --- a/win/rules.vc +++ b/win/rules.vc @@ -10,7 +10,7 @@ # Copyright (c) 2001-2002 David Gravereaux. # #------------------------------------------------------------------------------ -# RCS: @(#) $Id: rules.vc,v 1.7 2002/03/27 21:15:43 davygrvy Exp $ +# RCS: @(#) $Id: rules.vc,v 1.8 2002/06/14 14:42:21 davygrvy Exp $ #------------------------------------------------------------------------------ !ifndef _RULES_VC @@ -46,7 +46,7 @@ MACHINE = IX86 #---------------------------------------------------------- ### test for optimizations -!if [nmakehlp -c -Ox] +!if [nmakehlp -c -Otip ] !message *** Compiler has 'Optimizations' OPTIMIZING = 1 !else |