summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMyles Borins <mylesborins@google.com>2018-02-13 01:23:55 -0500
committerMyles Borins <mylesborins@google.com>2018-02-13 01:23:55 -0500
commitffd199cb93980de559158ee751e2a564e65304aa (patch)
tree1e3de88c5e6478fd3a3e986d40b67a6b9d514ead
parentb6000d828525f991341bd69fc4550e1316d4c81c (diff)
downloadnode-new-V8-6.4.388.45.tar.gz
deps: patch V8 to 6.4.388.45V8-6.4.388.45
Refs: https://github.com/v8/v8/compare/6.4.388.44...6.4.388.45
-rwxr-xr-xdeps/v8/gypfiles/gyp_v815
-rw-r--r--deps/v8/include/v8-version.h2
2 files changed, 6 insertions, 11 deletions
diff --git a/deps/v8/gypfiles/gyp_v8 b/deps/v8/gypfiles/gyp_v8
index e419b5e89e..5215f51352 100755
--- a/deps/v8/gypfiles/gyp_v8
+++ b/deps/v8/gypfiles/gyp_v8
@@ -108,19 +108,14 @@ def run_gyp(args):
if __name__ == '__main__':
args = sys.argv[1:]
- gyp_chromium_no_action = os.environ.get('GYP_CHROMIUM_NO_ACTION')
- if gyp_chromium_no_action == '1':
- print 'Skipping gyp_v8 due to GYP_CHROMIUM_NO_ACTION env var.'
+ gyp_chromium_no_action = os.environ.get('GYP_CHROMIUM_NO_ACTION', '1')
+ if gyp_chromium_no_action != '0':
+ print 'GYP is now disabled by default.\n'
+ print 'If you really want to run this, set the environment variable '
+ print 'GYP_CHROMIUM_NO_ACTION=0.'
sys.exit(0)
running_as_hook = '--running-as-hook'
- if running_as_hook in args and gyp_chromium_no_action != '0':
- print 'GYP is now disabled by default in runhooks.\n'
- print 'If you really want to run this, either run '
- print '`python gypfiles/gyp_v8` explicitly by hand '
- print 'or set the environment variable GYP_CHROMIUM_NO_ACTION=0.'
- sys.exit(0)
-
if running_as_hook in args:
args.remove(running_as_hook)
diff --git a/deps/v8/include/v8-version.h b/deps/v8/include/v8-version.h
index c3bd1dfe2d..8de6adcf22 100644
--- a/deps/v8/include/v8-version.h
+++ b/deps/v8/include/v8-version.h
@@ -11,7 +11,7 @@
#define V8_MAJOR_VERSION 6
#define V8_MINOR_VERSION 4
#define V8_BUILD_NUMBER 388
-#define V8_PATCH_LEVEL 44
+#define V8_PATCH_LEVEL 45
// Use 1 for candidates and 0 otherwise.
// (Boolean macro values are not supported by all preprocessors.)