Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

No Format
export CC=/sw/gcc/4.9.3/bin/gcc
export CXX=/sw/gcc/4.9.3/bin/g++
#export LAPACK_DIR=/sw/library/lapack/lapack-3.6.0/3.6.0
#export BLAS_DIR=/sw/library/blas/CBLAS
module load gcc/4.9.3
module load cmake/3.5.0
cmake . -DLAPACK_LIBRARIES=/sw/library/lapack/lapack-3.6.0/3.6.0/lib64/liblapack.so -DBLAS_LIBRARIES=/sw/library/blas/CBLAS/lib/cblas_LINUX.so -DCMAKE_INSTALL_PREFIX=/sw/simbody/353  2>&1 | tee cmakeLog.txt
make 2>&1 | tee makelog.txt
make test 2>&1 | tee makeTestlog.txt
make install 2>&1 | tee makeInstalllog.txt

...