Reviewers: Mads Sig Ager, Description: Merge revision 10297 to trunk: Enable max optimization for v8 in chromium.
Please review this at http://codereview.chromium.org/9023003/ SVN Base: http://v8.googlecode.com/svn/trunk/ Affected files: M build/common.gypi M src/version.cc M tools/gyp/v8.gyp Index: build/common.gypi =================================================================== --- build/common.gypi (revision 10297) +++ build/common.gypi (working copy) @@ -84,10 +84,6 @@ # For a shared library build, results in "libv8-<(soname_version).so". 'soname_version%': '', - - # We want max optimization for the V8 build (if this is not set, chrome - # defaults to low optimization settings) - 'optimize': 'max', }, 'target_defaults': { 'conditions': [ Index: src/version.cc =================================================================== --- src/version.cc (revision 10297) +++ src/version.cc (working copy) @@ -35,7 +35,7 @@ #define MAJOR_VERSION 3 #define MINOR_VERSION 8 #define BUILD_NUMBER 2 -#define PATCH_LEVEL 0 +#define PATCH_LEVEL 1 // Use 1 for candidates and 0 otherwise. // (Boolean macro values are not supported by all preprocessors.) #define IS_CANDIDATE_VERSION 0 Index: tools/gyp/v8.gyp =================================================================== --- tools/gyp/v8.gyp (revision 10297) +++ tools/gyp/v8.gyp (working copy) @@ -221,6 +221,9 @@ { 'target_name': 'v8_base', 'type': '<(library)', + 'variables': { + 'optimize': 'max', + }, 'include_dirs+': [ '../../src', ], -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
