diff options
author | patthoyts <patthoyts@users.sourceforge.net> | 2007-09-11 00:13:07 (GMT) |
---|---|---|
committer | patthoyts <patthoyts@users.sourceforge.net> | 2007-09-11 00:13:07 (GMT) |
commit | c6b29b12bf3680de4f95fd5d98bf69005ef1d606 (patch) | |
tree | fd42dacf0945334c527ba09779555b94c95528f0 /win/rules.vc | |
parent | ed4e01f66535acdac3cd68b707172137ad4e2a2a (diff) | |
download | tk-c6b29b12bf3680de4f95fd5d98bf69005ef1d606.zip tk-c6b29b12bf3680de4f95fd5d98bf69005ef1d606.tar.gz tk-c6b29b12bf3680de4f95fd5d98bf69005ef1d606.tar.bz2 |
Fix for AMD64 symbols builds
Diffstat (limited to 'win/rules.vc')
-rw-r--r-- | win/rules.vc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/win/rules.vc b/win/rules.vc index 235802e..678f4b3 100644 --- a/win/rules.vc +++ b/win/rules.vc @@ -11,7 +11,7 @@ # Copyright (c) 2003-2006 Patrick Thoyts # #------------------------------------------------------------------------------ -# RCS: @(#) $Id: rules.vc,v 1.5.2.8 2006/10/31 15:18:28 patthoyts Exp $ +# RCS: @(#) $Id: rules.vc,v 1.5.2.9 2007/09/11 00:13:12 patthoyts Exp $ #------------------------------------------------------------------------------ !ifndef _RULES_VC @@ -123,11 +123,14 @@ OPTIMIZATIONS = $(OPTIMIZATIONS) -GL DEBUGFLAGS = +# the platform SDK has broken headers that break the runtime checks for amd64 +!if "$(MACHINE)" != "AMD64" !if [nmakehlp -c -RTC1] DEBUGFLAGS = $(DEBUGFLAGS) -RTC1 !elseif [nmakehlp -c -GZ] DEBUGFLAGS = $(DEBUGFLAGS) -GZ !endif +!endif COMPILERFLAGS =-W3 |