Personal tools
You are here: Home / cmgui / Wiki / Building the perl interpreter libraries
Navigation
Log in


Forgot your password?
 

Building the perl interpreter libraries

This is how I got the perl interpreter to build on my system. First you need the bin2base64 utility to compile the perl interpreter. Go <a href=http://www.cmiss.org/ReleaseCenter/bin2base64>here</a> and download the tar.gz file from the link on that page.

Now extract the bin2base64 utility:

cd $CMISS_ROOT
mkdir utilities
tar -xzf /wherever/you/saved/the/tar/file/bin2base64-*.tar.gz -C utilities

Build the bin2base64 utility (debug and optimised versions):

cd utilities/bin2base64
make
make DEBUG=false

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

Build the perl_interpreter (debug and optimised versions):

cd $CMISS_ROOT/perl_interpreter
make
make DEBUG=false

With luck you're all done!