Re: [JS-internals] Compiler Option for Disabling JIT

2017-08-30 Thread Jan de Mooij
Hi, You can use --disable-ion to disable (all of) the JITs. Jan On Wed, Aug 30, 2017 at 12:32 PM, Masquerade wrote: > I recall when compiling early Spidermonkey for ff10, I could disable the > JIT and shared library by: > > ../configure --disable-methodjit --disable-shared-js > > Wondering

[JS-internals] Compiler Option for Disabling JIT

2017-08-30 Thread Masquerade
I recall when compiling early Spidermonkey for ff10, I could disable the JIT and shared library by: ../configure --disable-methodjit --disable-shared-js Wondering if the JIT can still be disabled during compilation by the same option in the latest version? __