-
Notifications
You must be signed in to change notification settings - Fork 109
Expand file tree
/
Copy pathmake.txt
More file actions
40 lines (24 loc) · 849 Bytes
/
make.txt
File metadata and controls
40 lines (24 loc) · 849 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
How to build/test j32/64 for linux/darwin/raspberry/...
Note: on a 64 bit linux system, the following packages will be needed:
gcc-multilib
libedit-dev
**************************************************************************
# In what follows $ROOT is the root directory of your J project
cd $ROOT/make
# make sure shell scripts are executable
chmod +x *.sh
# Edit jplatform in file make.sh
# !!! edit platform to be appropriate for the system doing the builds !!!
# valid platforms are: linux darwin raspberry
./make.sh
# The above line builds the system into the $ROOT/build directory
# To install to /opt do:
sudo ./install-opt.sh
# Set path to access J
export PATH=/opt/J/j64/bin:$PATH
# To run jconsole
jconsole
# To run the browser based IDE
jhs
# then go to the following URL on your browser:
http://127.0.0.1:65001/jijx