| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -55,7 +55,7 @@ | |||
| 55 | 55 | valid_mips_float_abi = ('soft', 'hard') | |
| 56 | 56 | valid_intl_modes = ('none', 'small-icu', 'full-icu', 'system-icu') | |
| 57 | 57 | 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') | ||
| 59 | 59 | ||
| 60 | 60 | # builtins may be removed later if they have been disabled by options | |
| 61 | 61 | shareable_builtins = {'undici/undici': 'deps/undici/undici.js', | |
@@ -2169,7 +2169,7 @@ def configure_v8(o, configs): | |||
| 2169 | 2169 | o['variables']['v8_promise_internal_field_count'] = 1 # Add internal field to promises for async hooks. | |
| 2170 | 2170 | o['variables']['v8_use_siphash'] = 0 if options.without_siphash else 1 | |
| 2171 | 2171 | o['variables']['v8_enable_maglev'] = B(not options.v8_disable_maglev and | |
| 2172 | - flavor != 'zos' and | ||
| 2172 | + flavor not in ('aix', 'os400', 'zos') and | ||
| 2173 | 2173 | o['variables']['target_arch'] in maglev_enabled_architectures) | |
| 2174 | 2174 | o['variables']['v8_enable_pointer_compression'] = 1 if options.enable_pointer_compression else 0 | |
| 2175 | 2175 | # Using the sandbox requires always allocating array buffer backing stores in the sandbox. | |
| Back | FazBrowse Home | New Git URL |
0 commit comments