Difference between revisions of "Build Scripts and Makefiles"

From GlueXWiki
Jump to: navigation, search
Line 17: Line 17:
 
make install
 
make install
 
cd ../../../..
 
cd ../../../..
mkdir gluex
+
mkdir halld
cd gluex
+
cd halld
 
svn checkout https://halldsvn.jlab.org/repos/trunk/src
 
svn checkout https://halldsvn.jlab.org/repos/trunk/src
 
setenv HALLD_HOME $cwd
 
setenv HALLD_HOME $cwd

Revision as of 15:04, 3 January 2008

The following steps will build JANA and the Hall D software tree in the directores "jana" and "gluex" respectively, creating them in the current working directory. It is assumed that the support packages (xerces, cernlib, root, etc.) have all been installed previoiusly. All necessary environment variables are set explicitly here; they will likely not be appropriate for your machine and must be modified to fit your particular environment. This worked for me from a Fedora 7 box.

mkdir jana
cd jana
wget http://www.jlab.org/JANA/releases/jana_svn_daily_linux.tgz
tar zxvf jana_svn_daily_linux.tgz
cd jana_svn_daily_linux
setenv JANA_HOME $cwd
rm -rf bin lib include
cd src/JANA
setenv OS `/bin/uname -s`
setenv ARCH `/bin/uname -p`
setenv OSNAME ${OS}-${ARCH}
make clean
make
make install
cd ../../../..
mkdir halld
cd halld
svn checkout https://halldsvn.jlab.org/repos/trunk/src
setenv HALLD_HOME $cwd
cd src
setenv ROOTSYS /usr/local/src/root/prod
setenv XERCESCROOT /usr/local/xerces-c/prod
setenv XERCES_INCLUDE $XERCESCROOT/include
setenv LD_LIBRARY_PATH  $ROOTSYS/lib:$XERCESCROOT/lib
setenv CERN /usr/local/cernlib
setenv CERN_LEVEL 2006
eval `addpath.pl $ROOTSYS/bin $CERN/$CERN_LEVEL/bin`
make FC=gfortran DFC=gfortran
cd ../..