SCRun on SPL Machines

From NAMIC Wiki
Revision as of 21:35, 1 August 2007 by Mjolley (talk | contribs)
Jump to: navigation, search
Home < SCRun on SPL Machines

Building SCIRun on an SPL Machine


To obtain the working branch utilized in the collaboration you need subversion. To obtain it:

 svn co https://code.sci.utah.edu/svn/SCIRun/cibc/trunk

To build:

cd to trunk/SCIRun

 ./build.sh --get-cmake -jx

where x is the number of cores you have. The get cmake flag is necessary to build as SCIRun currently required cmake 2.4.x and the default on SPL is the previous version.

Once built you need to enable ModelCreation. From the /trunk/SCIRun/bin directory type:

 ../cmake/local/bin/ccmake  ../src

Once in ccmake add ModelCreation to the list of packages, type c to configure and g to generate. Once this has occured it will put you back into the shell in /trunk/SCIRun/bin, then just make:

 make -jx

When this is completed you currently have to direct SCIRun to the the correct drivers as per this discussion. From the /trunk/SCIRun/bin directory type:

 find . -name build.make | xargs ~dav/bin/updatefile ~dav/changeit

When this is completed you need to run make again in the /trunk/SCIRun/bin directory:

 make

You should now have a working version of SCIRun in your /trunk/SCIRun/bin directory