-
Notifications
You must be signed in to change notification settings - Fork 3
How to Build JSE
From the root of your extracted download or cloned project, enter the following command:
make
This vital step will create the project assemblies, and combine them into an application stored under ./bin/jse
Build errors? Most users have all of the software dependencies available to them in a standard desktop installation. A top-down overview of the profile is as such
- GNU Make
- Bash
- pkg-config
- WebKitGTK+
- GCC
- DynCall 0.7 is also required, but provided with all releases.
A Proper installation of an official WebKitGTK+ package, should insure that all other dependency requirements are met.
From this point, you can run examples, or the ./core.js
file from the project's root directory.
bin/jse example/Address.js
core.js
is an executable shell script that specifies ./bin/jse as it's interpreter. You execute the shell file as such:
./core.js
JSE will make all arguments available to the target script, and does not accept any "own arguments" other than the file to execute.
To make jse a part of your environment (/bin/jse
) issue the following command:
sudo make install
DO NOT UNDER ANY CIRCUMSTANCES CHANGE THE INSTALLATION PATH
If JSE does not reside in /bin
your system is incompatible and being made susceptible to malicious code execution. Contact your vendor.