105
edits
TapasSarangi (talk | contribs) No edit summary |
TapasSarangi (talk | contribs) No edit summary |
||
make install
# At this point you should see all the libraries in /cvmfs
</nowiki>
== Build CLHEP ==
<nowiki>
# Only login0[1-6].hep.wisc.edu are accessible from outside networks
ssh login06.hep.wisc.edu
# From login06, login to osggrid01.hep.wisc.edu (this is the cvmfs writer)
ssh osggrid01.hep.wisc.edu
# Make sure your path is set to these
export PATH=/usr/bin:/bin:/usr/local/bin:/sbin:/usr/sbin
# The /scratch is where you would build the package before installing on cvmfs
# This prevents unnecessary build files getting into cvmfs
mkdirp -p /scratch/$USER
cd /scratch/$USER
# Get the Geant4 tarball from
http://geant4.web.cern.ch/geant4/support/download.shtml
tar xvzf geant4.10.02.b01.tar.gz
mkdir -p /cvmfs/lz.opensciencegrid.org/geant4/geant4.10.02.b01
mkdir -p build
cd build
cmake -DCMAKE_INSTALL_PREFIX=/cvmfs/lz.opensciencegrid.org/geant4/geant4.10.02.b01 \
-DCLHEP_ROOT_DIR=/cvmfs/lz.opensciencegrid.org/CLHEP/2.2.0.4 \
-DGEANT4_USE_QT=ON -DQT_QMAKE_EXECUTABLE=/usr/lib64 \
-DGEANT4_INSTALL_DATA=ON \
-DGEANT4_INSTALL_EXAMPLES=ON \
../geant4.10.02.b01
make -j8
make install
</nowiki>
|