Views
Building the perl interpreter libraries
This is how I got the perl interpreter to build on my system (for Ubuntu linux dapper drake running on an i686 machine).
Check out the source code for the perl interpreter:
cd $CMISS_ROOT svn checkout https://svn.physiomeproject.org/svn/cmiss/perl_interpreter/trunk perl_interpreter
Check out the utilities module used by the perl_interpreter:
cvs checkout utilities
Build the bin2base64 utility (debug and optimised versions):
cd $CMISS_ROOT/utilities/bin2base64 make make DEBUG=false
Build the perl_interpreter (debug and optimised versions):
cd $CMISS_ROOT/perl_interpreter make make DEBUG=false