Browse Source

Upgrade V8 to 3.8.2.1

v0.7.4-release
Ryan Dahl 13 years ago
parent
commit
e4731f8168
  1. 4
      deps/v8/build/common.gypi
  2. 2
      deps/v8/src/version.cc
  3. 3
      deps/v8/tools/gyp/v8.gyp

4
deps/v8/build/common.gypi

@ -84,10 +84,6 @@
# For a shared library build, results in "libv8-<(soname_version).so". # For a shared library build, results in "libv8-<(soname_version).so".
'soname_version%': '', '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': { 'target_defaults': {
'conditions': [ 'conditions': [

2
deps/v8/src/version.cc

@ -35,7 +35,7 @@
#define MAJOR_VERSION 3 #define MAJOR_VERSION 3
#define MINOR_VERSION 8 #define MINOR_VERSION 8
#define BUILD_NUMBER 2 #define BUILD_NUMBER 2
#define PATCH_LEVEL 0 #define PATCH_LEVEL 1
// Use 1 for candidates and 0 otherwise. // Use 1 for candidates and 0 otherwise.
// (Boolean macro values are not supported by all preprocessors.) // (Boolean macro values are not supported by all preprocessors.)
#define IS_CANDIDATE_VERSION 0 #define IS_CANDIDATE_VERSION 0

3
deps/v8/tools/gyp/v8.gyp

@ -221,6 +221,9 @@
{ {
'target_name': 'v8_base', 'target_name': 'v8_base',
'type': '<(library)', 'type': '<(library)',
'variables': {
'optimize': 'max',
},
'include_dirs+': [ 'include_dirs+': [
'../../src', '../../src',
], ],

Loading…
Cancel
Save