mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-03 14:28:39 +09:00
Issue #1611 - Enable WASM by default but only enable jit when 64bit
This commit is contained in:
parent
8df44f9320
commit
ed0edf6a22
1 changed files with 7 additions and 1 deletions
|
|
@ -1265,8 +1265,14 @@ pref("javascript.options.unboxed_objects", false);
|
|||
pref("javascript.options.baselinejit", true);
|
||||
pref("javascript.options.ion", true);
|
||||
pref("javascript.options.asmjs", true);
|
||||
pref("javascript.options.wasm", false);
|
||||
pref("javascript.options.wasm", true);
|
||||
// wasm jit crashes in 32bit builds because of 64bit casts so
|
||||
// only enable it by default for 64bit builds
|
||||
#ifdef HAVE_64BIT_BUILD
|
||||
pref("javascript.options.wasm_baselinejit", true);
|
||||
#else
|
||||
pref("javascript.options.wasm_baselinejit", false);
|
||||
#endif
|
||||
pref("javascript.options.native_regexp", true);
|
||||
pref("javascript.options.parallel_parsing", true);
|
||||
// ayncstack is used for debugging promises in devtools.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue