-
Notifications
You must be signed in to change notification settings - Fork 8
1.1 Note on compilation
If you want to compile the whole project, you need to execute:
python configure.py
make all libs
The script: configure.py
will check your configuration and adjust your compiling environment accordingly.
The compilation process requires two files: Makefile
and Makefile.in
.
-
Makefile
should not be changed. It contains the instructions to compile both the interpreter and the libraries. It importsMakefile.in
. -
Makefile.in
is the file that is updated byconfigure.py
. It contains the specific paths to the different libraries that might be required to compile the whole project.
LispE
is quite small and the whole project compiles in about a minute on most platforms.
The second step is to initialise the environment variable: LISPEPATH to the directory that contains the libraries that you have just compiled:
export LISPEPATH=/home/myname/lispe/bin
If you decide to move them to another directory, then you will need to update LISPEPATH
accordingly.
We provide specific makefiles for Windows
, for Visual 2017. Please note that pre-compiled versions are available here