Changes between Version 4 and Version 5 of FTLJIT
- Timestamp:
- Sep 12, 2013 11:56:48 AM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
FTLJIT
v4 v5 50 50 == Running 51 51 52 The FTL JIT is runtime-disabled even when it is buildtime-enabled. Hence to run a program with the FTL JIT you also need :52 The FTL JIT is runtime-disabled even when it is buildtime-enabled. Hence to run a program with the FTL JIT you also need the --useExperimentalFTL=true option, like: 53 53 54 54 {{{ 55 55 DYLD_FRAMEWORK_PATH=WebKitBuild/Debug WebKitBuild/Debug/jsc --useExperimentalFTL=true <my JS program> 56 }}} 57 58 Note that all jsc command-line options can also be passed as environment variables, which is useful if you're running an application that deeply embeds JavaScriptCore (for example, a browser). In this case you would do: 59 60 {{{ 61 export JSC_useExperimentalFTL=true 56 62 }}} 57 63