GNU APL is easy to build on your own Linux machine, though the steps aren’t detailed on the website.
Benefits of building yourself locally:
- One can customize how many cores GNU APL has access to
- Customizing optional extensions like PNG image, SQLite, GTK support etc.
- Having the latest bugfixes
-
Obtain the latest source
- mkdir apl-build
- svn checkout http://svn.savannah.gnu.org/svn/apl/trunk
-
Configure using autotools
- cd trunk
- make clean
- ./configure CORE_COUNT_WANTED=3 RATIONAL_NUMBERS_WANTED=yes --with-ctrld_del
Use ./configure --help to see other options, adjust to taste
-
Build and install
- make -j && sudo make install
-
Set up your default workspace
- cd ~
- mkdir -p GNUAPL/workspaces
You must log in or register to comment.