Versions Compared

Key

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

...

No Format
module load cmake/3.5.0
module load library/lapackBlas/3.6.0
module load gcc/4.9.3

cmake . -DCMAKE_C_COMPILER=/sw/gcc/4.9.3/bin/gcc -DCMAKE_CXX_COMPILER=/sw/gcc/4.9.3/bin/g++  -DCMAKE_INSTALL_PREFIX=/sw/misc/simbody/3.5.4   2>&1 | tee cmakeLog.txt

make 2>&1 | tee makeLog.txt
make install 2>&1 | tee makeInstallLog.txt

simbody 3.5.4 with python binding

No Format
module load cmake/3.8.2
module load library/lapackBlas/3.6.0
module load gcc/4.9.3
module load python/2.7.1-shared
module unload gcc/5.4.0


cd /sw/misc/simbody/3.5.4py/src/simbody-Simbody-3.5.4

cmake . -DBUILD_PYTHON_WRAPPING=on -DCMAKE_C_COMPILER=/sw/gcc/4.9.3/bin/gcc -DCMAKE_CXX_COMPILER=/sw/gcc/4.9.3/bin/g++  -DCMAKE_INSTALL_PREFIX=/sw/misc/simbody/3.5.4py 2>&1 | tee cmakeLog.txt


make 2>&1 | tee makeLog.txt
make install 2>&1 | tee makeInstallLog.txt

 

simbody 360

No Format
module list
Currently Loaded Modulefiles:
  1) library/gmp/6.0.0    2) library/mpfr/3.1.2   3) library/mpc/1.0.2    4) gcc/4.9.3            5) cmake/3.5.0

cd /sw/simbody/360/src/simbody-master
export CC=/sw/gcc/4.9.3/bin/gcc
export CXX=/sw/gcc/4.9.3/bin/g++
module load gcc/4.9.3
module load cmake/3.5.0
cmake .  -DBUILD_PYTHON_WRAPPING=on -DCMAKE_INSTALL_PREFIX=/sw/simbody/360  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

...