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

Unified Diff: build/common.gypi

Issue 10636055: Enable whole program optimization for WIN64 to make build-bot green. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 6 months 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/common.gypi
diff --git a/build/common.gypi b/build/common.gypi
index ae6b2a7de69b4aa420254c5e808e77efed7d19a6..f8327edd3085e5d6c704fcf5f8b8a3a55a5b2999 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -380,13 +380,16 @@
'FavorSizeOrSpeed': '0',
'OmitFramePointers': 'true',
'StringPooling': 'true',
-
'conditions': [
['OS=="win" and component=="shared_library"', {
'RuntimeLibrary': '2', #/MD
}, {
'RuntimeLibrary': '0', #/MT
}],
+ ['v8_target_arch=="x64"', {
+ # TODO(V8:2207): remove this option once the bug is fixed.
+ 'WholeProgramOptimization': 'true',
+ }]
Jakob Kummerow 2012/06/26 15:07:56 nit: missing comma
],
},
'VCLinkerTool': {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698