Revision: 11933
Author:   [email protected]
Date:     Tue Jun 26 08:27:12 2012
Log: Enable whole program optimization for WIN64 to make build-bot green.

[email protected]
BUG=v8:2207

Review URL: https://chromiumcodereview.appspot.com/10636055
http://code.google.com/p/v8/source/detail?r=11933

Modified:
 /branches/bleeding_edge/build/common.gypi

=======================================
--- /branches/bleeding_edge/build/common.gypi   Tue Jun 19 07:20:29 2012
+++ /branches/bleeding_edge/build/common.gypi   Tue Jun 26 08:27:12 2012
@@ -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(2207): remove this option once the bug is fixed.
+                    'WholeProgramOptimization': 'true',
+                  }],
                 ],
               },
               'VCLinkerTool': {

--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to