209
edits
No edit summary |
|||
<nowiki>
# Only login0[1-6].hep.wisc.edu are accessible from outside networks
ssh
# From
ssh lzsoft.hep.wisc.edu
# Make sure your path is set to these
export PATH=$PATH:/usr/bin:/bin:/usr/local/bin:/sbin:/usr/sbin
# The /scratch is where you would build the package before installing on cvmfs
mkdirp -p /scratch/$USER
cd /scratch/$USER
# Download the desired version from http://proj-clhep.web.cern.ch/proj-clhep/clhep23.html
tar xvzf clhep-2.2.0.4.tgz ▼
mkdir -p clhep_build
cd clhep_build
# Create CVMFS install area where libraries and binaries will be installed
mkdir -p /cvmfs/lz.opensciencegrid.org/CLHEP/2.
# Follow instructions in 2.3.4.3/CLHEP/README.md file
cmake --build . --config RelWithDebInfo
ctest
cmake --build . --target install
▲cmake -DCMAKE_INSTALL_PREFIX=/cvmfs/lz.opensciencegrid.org/CLHEP/2.2.0.4 ../2.2.0.4/CLHEP
# At this point you should see all the libraries in /cvmfs
</nowiki>
|