Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5438)

Unified Diff: build/internal/release_impl_purify.scons

Issue 11368: Purify support:... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 12 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « build/internal/release_impl_official.scons ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/internal/release_impl_purify.scons
===================================================================
--- build/internal/release_impl_purify.scons (revision 5880)
+++ build/internal/release_impl_purify.scons (working copy)
@@ -17,13 +17,17 @@
)
if env.Bit('windows'):
+ env.Replace(
+ CHROMIUM_CC_OPT_FLAGS = [
+ '/Od', # VCCLCompilerTool.Optimization="0"
+ ],
+ ),
env.Append(
CCFLAGS = [
- '/Od', # VCCLCompilerTool.Optimization="0"
'/MT', # VCCLCompilerTool.RuntimeLibrary="0"
'/GS-', # VCCLCompilerTool.BufferSecurityCheck="false"
- ]
+ ],
LINKFLAGS = [
- '/OPT:ICF', # VCLinkerTool.EnableCOMDATFolding="1"
+ '/OPT:NOICF', # VCLinkerTool.EnableCOMDATFolding="2"
Erik does not do reviews 2008/11/22 00:45:39 do we need to replace the /OPT:ICF that came in fr
],
)
« no previous file with comments | « build/internal/release_impl_official.scons ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698