From eff636d8eb7b009c40fb053802c169ba1417293d Mon Sep 17 00:00:00 2001 From: Ali Ijaz Sheikh Date: Thu, 1 Jun 2017 17:55:42 -0700 Subject: [PATCH] build: disable V8 snapshots PR-URL: https://github.com/nodejs/node-private/pull/84 Reviewed-By: bnoordhuis - Ben Noordhuis Reviewed-By: mhdawson - Michael Dawson Reviewed-By: indutny - Fedor Indutny --- configure | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/configure b/configure index 1cc3af5411d224..e0369f348deb89 100755 --- a/configure +++ b/configure @@ -425,12 +425,12 @@ parser.add_option('--without-perfctr', # Dummy option for backwards compatibility parser.add_option('--with-snapshot', action='store_true', - dest='unused_with_snapshot', + dest='with_snapshot', help=optparse.SUPPRESS_HELP) parser.add_option('--without-snapshot', action='store_true', - dest='without_snapshot', + dest='unused_without_snapshot', help=optparse.SUPPRESS_HELP) parser.add_option('--without-ssl', @@ -813,7 +813,7 @@ def configure_node(o): cross_compiling = (options.cross_compiling if options.cross_compiling is not None else target_arch != host_arch) - want_snapshots = not options.without_snapshot + want_snapshots = 1 if options.with_snapshot else 0 o['variables']['want_separate_host_toolset'] = int( cross_compiling and want_snapshots) o['variables']['want_separate_host_toolset_mkpeephole'] = int( @@ -960,7 +960,7 @@ def configure_v8(o): o['variables']['v8_optimized_debug'] = 0 # Compile with -O0 in debug builds. o['variables']['v8_random_seed'] = 0 # Use a random seed for hash tables. o['variables']['v8_promise_internal_field_count'] = 1 # Add internal field to promises for async hooks. - o['variables']['v8_use_snapshot'] = 'false' if options.without_snapshot else 'true' + o['variables']['v8_use_snapshot'] = b(options.with_snapshot) o['variables']['v8_trace_maps'] = 1 if options.trace_maps else 0 o['variables']['node_use_v8_platform'] = b(not options.without_v8_platform) o['variables']['node_use_bundled_v8'] = b(not options.without_bundled_v8)