JSC is now a public library on iOS and tvOS. Ejecta has switched to the JSC library provided by the System. It still has some limitations (no native Typed Array API) as of 2016.03.30, but they are mostly workaroundable.
Also, compiling it for tvOS requires bitcode compilation now, which this fork of JSC does not support. You can read up on the fascinating details in my blog.
The JavaScriptCore library is part of the WebKit project and thus Open Source. However, in the sources you get from the WebKit SVN, the XCode project files are curiously missing an iOS compile target. The sources you get from opensource.apple.com are missing the project files altogether. You can't compile it at all. That's quite the Open Source spirit, Apple!
This repo aims to re-produce the missing iOS targets while staying on a somewhat up-to-date version.
Currently, the Safari-538.11.1 tag is used as the basis. With the current settings, the WTF and JavaScriptCore libraries can be compiled for armv7, armv7s, arm64 and x86 (for the iOS simulator). It will be compiled without Unicode collation support, because Apple claims ICU is a private framework on iOS. It should be AppStore compatible this way.
This version of JSC deprecates the typed-arrays
branch of this repository. JSC now supports Typed Arrays natively, without any hacks.
Note however, that the source code of JSC was still modified:
API/JSTypedArray.h
, it declares three new API functions. The documentation for these functions can be found in this header file as well.Number.MIN_VALUE
was fixed to return DBL_MIN
instead of 0
when the CPU has not enabled support denormal numbers.A compiled version of the libJavaScriptCore.a
for armv7, armv7s, arm64 and the Simulator can be found in the source tree of the Ejecta project.
python make.py
.You can do python make.py --help
for more options.