SCRun on SPL Machines

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

Building SCIRun on an SPL Machine


Problems and Solutions on SPL Machine Blog


These are the current build instructions for the Fedora Core 5 and Fedora Core 7 SPL machines, as of August 2007. Currently we are still having some problems with the recognition of the correct open GL drivers as discussed above.

Follow these links for more on the CIBC and the Scientific Computing Institute in Utah.

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

If instead you want a standard release build you can check out one of the repositories listed here such as:

 svn co https://code.sci.utah.edu/svn/SCIRun/cibc/branches/3.0.x/SCIRun

For more general information on SCIRun building visit the SCIRun Installation Wiki

To build cd to trunk/SCIRun and run the build script:

./build.sh -jx

where x is the number of cores you have. The get cmake option may be necessary to build as SCIRun currently requires cmake 2.4.x. If your cmake is not 2.4.x then you can add --get-cmake and create a local version.


For our current project we utilize the extra package ModelCreation. If you do not use this package you can skip this step. To enable ModelCreation


If you are using 2.4.x cmake/ccmake version on the SPL machines current you can type:

 ccmake  ../src

If you are using the version of ccmake created for SCIRun by build.sh with the --get-cmake option then from the /trunk/SCIRun/bin directory type the following:

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


Once in ccmake add ModelCreation to the list of LOAD_PACKAGE. Arrow down to LOAD_PACKAGE and hit return to allow you to edit the listed packages. Once you have done this type c to configure and g to generate.


CcmakeforSCIRun.png


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 on the SPL machine build of Fedora as per this discussion. For this we utilize a script written in ksh so you need ksh installed on the system, which all SPL machines should have. If you are on another OS/machine SCIRun might already be setup correctly with regards to OpenGL drivers and you will not need this step. For the SPL Fedora machines cd to the /trunk/SCIRun/bin directory type:

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

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

 make -jx

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