Skip to content

Commit 91ccbf0

Browse files
committed
configure: v8_use_snapshot should be true
`v8_use_snapshot` should be either `true` or `false`, not 1 or 0. PR-URL: #3962 Reviewed-By: Ali Ijaz Sheikh <ofrobots@google.com>
1 parent c83d9b7 commit 91ccbf0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

‎configure‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -777,7 +777,7 @@ def configure_v8(o):
777777
o['variables']['v8_no_strict_aliasing'] =1# Work around compiler bugs.
778778
o['variables']['v8_optimized_debug'] =0# Compile with -O0 in debug builds.
779779
o['variables']['v8_random_seed'] =0# Use a random seed for hash tables.
780-
o['variables']['v8_use_snapshot'] =0ifoptions.without_snapshotelse1
780+
o['variables']['v8_use_snapshot'] ='false'ifoptions.without_snapshotelse'true'
781781

782782
defconfigure_openssl(o):
783783
o['variables']['node_use_openssl'] =b(notoptions.without_ssl)

0 commit comments

Comments
 (0)