diff options
author | Jim Miller <millerjv@crd.ge.com> | 2001-01-25 20:48:58 (GMT) |
---|---|---|
committer | Jim Miller <millerjv@crd.ge.com> | 2001-01-25 20:48:58 (GMT) |
commit | 9039bc75f141803ea0272357172732dc0f338a63 (patch) | |
tree | 798d43e2739ef1874b9db485d8fa111f56706df7 /Source/staticLibHeader.dsptemplate | |
parent | c75e8bbef05f3f3925a39a67239cfabd36667849 (diff) | |
download | CMake-9039bc75f141803ea0272357172732dc0f338a63.zip CMake-9039bc75f141803ea0272357172732dc0f338a63.tar.gz CMake-9039bc75f141803ea0272357172732dc0f338a63.tar.bz2 |
BUG: backed off on the compiler optimization used. Instead of using /O2, we now use all the components of /Ox (/Ob1 /Oi /Ot /Oy /Gs) except for /Og
Diffstat (limited to 'Source/staticLibHeader.dsptemplate')
-rw-r--r-- | Source/staticLibHeader.dsptemplate | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/staticLibHeader.dsptemplate b/Source/staticLibHeader.dsptemplate index a326a0e..2c08c91 100644 --- a/Source/staticLibHeader.dsptemplate +++ b/Source/staticLibHeader.dsptemplate @@ -52,8 +52,8 @@ RSC=rc.exe # PROP Output_Dir "Release"
# PROP Intermediate_Dir "Release"
# PROP Target_Dir ""
-# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c
-# ADD CPP /nologo /GR /MD /W3 /GX /O2 BUILD_INCLUDES EXTRA_DEFINES /D "NDEBUG" /D "WIN32" /D "_MBCS" /D "_LIB" /YX /FD /c
+# ADD BASE CPP /nologo /W3 /GX /Ob1 /Oi /Ot /Oy /Gs /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c
+# ADD CPP /nologo /GR /MD /W3 /GX /Ob1 /Oi /Ot /Oy /Gs BUILD_INCLUDES EXTRA_DEFINES /D "NDEBUG" /D "WIN32" /D "_MBCS" /D "_LIB" /YX /FD /c
# ADD BASE RSC /l 0x409 /d "NDEBUG"
# ADD RSC /l 0x409 /d "NDEBUG"
BSC32=bscmake.exe
|