Skip to content

Commit fb16662

Browse files
targosnodejs-github-bot
authored andcommitted
build: enable shared RO heap with ptr compression
Refs: https://chromium-review.googlesource.com/c/v8/v8/+/5857294
1 parent e5b9911 commit fb16662

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

configure.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1661,7 +1661,7 @@ def configure_v8(o, configs):
16611661
o['variables']['v8_enable_pointer_compression'] = 1 if options.enable_pointer_compression else 0
16621662
o['variables']['v8_enable_sandbox'] = 1 if options.enable_pointer_compression else 0
16631663
o['variables']['v8_enable_31bit_smis_on_64bit_arch'] = 1 if options.enable_pointer_compression else 0
1664-
o['variables']['v8_enable_shared_ro_heap'] = 0 if options.enable_pointer_compression or options.disable_shared_ro_heap else 1
1664+
o['variables']['v8_enable_shared_ro_heap'] = 0 if options.disable_shared_ro_heap else 1
16651665
o['variables']['v8_enable_extensible_ro_snapshot'] = 0
16661666
o['variables']['v8_trace_maps'] = 1 if options.trace_maps else 0
16671667
o['variables']['node_use_v8_platform'] = b(not options.without_v8_platform)

0 commit comments

Comments
 (0)