Skip to content

Commit 39b481b

Browse files
authored
build: enable maglev by default on Linux ppc64le
Signed-off-by: Richard Lau <richard.lau@ibm.com> PR-URL: #63474 Reviewed-By: Stewart X Addison <sxa@redhat.com>
1 parent 6d02b36 commit 39b481b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

configure.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
valid_mips_float_abi = ('soft', 'hard')
5656
valid_intl_modes = ('none', 'small-icu', 'full-icu', 'system-icu')
5757
icu_versions = json.loads((tools_path / 'icu' / 'icu_versions.json').read_text(encoding='utf-8'))
58-
maglev_enabled_architectures = ('x64', 'arm', 'arm64', 's390x')
58+
maglev_enabled_architectures = ('x64', 'arm', 'arm64', 'ppc64', 's390x')
5959

6060
# builtins may be removed later if they have been disabled by options
6161
shareable_builtins = {'undici/undici': 'deps/undici/undici.js',
@@ -2175,7 +2175,7 @@ def configure_v8(o, configs):
21752175
o['variables']['v8_promise_internal_field_count'] = 1 # Add internal field to promises for async hooks.
21762176
o['variables']['v8_use_siphash'] = 0 if options.without_siphash else 1
21772177
o['variables']['v8_enable_maglev'] = B(not options.v8_disable_maglev and
2178-
flavor != 'zos' and
2178+
flavor not in ('aix', 'os400', 'zos') and
21792179
o['variables']['target_arch'] in maglev_enabled_architectures)
21802180
o['variables']['v8_enable_pointer_compression'] = 1 if options.enable_pointer_compression else 0
21812181
# Using the sandbox requires always allocating array buffer backing stores in the sandbox.

0 commit comments

Comments
 (0)