8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
v8_use_snapshot
true
1 parent b81b45d commit f29c5d6Copy full SHA for f29c5d6
configure
@@ -777,7 +777,7 @@ def configure_v8(o):
777
o['variables']['v8_no_strict_aliasing'] = 1 # Work around compiler bugs.
778
o['variables']['v8_optimized_debug'] = 0 # Compile with -O0 in debug builds.
779
o['variables']['v8_random_seed'] = 0 # Use a random seed for hash tables.
780
- o['variables']['v8_use_snapshot'] = 0 if options.without_snapshot else 1
+ o['variables']['v8_use_snapshot'] = 'false' if options.without_snapshot else 'true'
781
782
def configure_openssl(o):
783
o['variables']['node_use_openssl'] = b(not options.without_ssl)