Building the GP 2 Compiler
To build the compiler, first download the files from the GP 2 Github Page. Then in the folder GP2/Compiler
run the following commands.
autoreconf -i; autoconf -i; automake -a
./configure
make dist
tar -xzvf gp2-1.0.tar.gz; cd gp2-1.0
./configure --prefix=<path_to_build_directory>
where<path_to_build_directory>
is where you want the compiler to reside.cp ../lib/*.{c,h} lib/
make
make install