Changes between Initial Version and Version 1 of JSCOnly


Ignore:
Timestamp:
Jan 31, 2018 11:38:32 AM (6 years ago)
Author:
clopez@igalia.com
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • JSCOnly

    v1 v1  
     1[[PageOutline]]
     2
     3= JSCOnly =
     4
     5The JSCOnly port allows to build the JSC (JavaScriptCore) interpreter using as less dependencies as possible
     6
     7More info: http://constellation.github.io/blog/2016/05/02/how-to-build-javascriptcore-on-your-machine
     8
     9== Building ==
     10
     11
     120. '''Get the code'''
     13
     14{{{
     15git clone git://git.webkit.org/WebKit.git WebKit
     16# You can use also the mirror https://github.com/WebKit/webkit
     17}}}
     18
     192. '''Build JSCOnly'''
     20
     21{{{
     22Tools/Scripts/build-jsc --jsc-only
     23}}}
     24
     25You will get a '''jsc''' binary in the build directory (!WebKitBuild)
     26
     273. '''Running tests'''
     28
     29You can run the test suite as follows
     30{{{
     31Tools/Scripts/run-javascriptcore-tests --jsc-only --release --no-build --no-fail-fast
     32}}}
     33== CrossBuilding==