Personal tools
You are here: Home cmgui Wiki Building the perl interpreter libraries
Views

Building the perl interpreter libraries

last edited 3 years ago by hsor001

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 here 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!

Contributing to this site

Please add to the wiki any relevant information that you think might be useful to other users of this website. For example, you might like to contribute your experiences, questions and answers.

You are encouraged to contribute to this site regardless of your level of experience. Contributions are welcomed from new and regular visitors.

If you ask a question and receive an answer from a developer you should record it in the wiki. This information is extremely useful and can help other users overcome the same problem.

See how to add and edit pages for more information.