Changes between Version 46 and Version 47 of pleiadesbash
- Timestamp:
- 04/30/24 13:10:17 (12 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
pleiadesbash
v46 v47 38 38 39 39 And replace `ISSM_DIR` with your actual trunk. ''Log out and log back in'' to apply this change. 40 41 Note that if your `bashrc` is not loaded when you logging, you will have to add a new file: `~/.bash_login` with the following content: 42 ``` 43 if [ -f ~/.bashrc ]; then . ~/.bashrc; fi 44 ``` 40 45 41 46 == Installing ISSM on Pleiades == … … 192 197 193 198 {{{ 194 #! sh199 #!bashsh 195 200 ./configure \ 196 201 --prefix=$ISSM_DIR \ … … 200 205 --without-Sealevelchange \ 201 206 --without-kriging \ 202 --with-m1qn3-dir=$ISSM_DIR/externalpackages/m1qn3/install \203 --with-metis-dir=$ISSM_DIR/externalpackages/petsc/install \204 --with-scalapack-lib="-L/nasa/intel/Compiler/2018.3.222/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64/libmkl_scalapack_lp64.so" \205 207 --with-mpi-include=" " \ 206 208 --with-mpi-libflags=" -lmpi" \ 207 --with-mkl-libflags="-L/nasa/intel/Compiler/2018.3.222/compilers_and_libraries_2018.3.222/linux/mkl/lib/intel64 -lmkl_intel_lp64 -lmkl_sequential -lmkl_core -lpthread -lm" \ 209 --with-fortran-lib="-L/nasa/intel/Compiler/2018.3.222/compilers_and_libraries_2018.3.222/linux/compiler/lib/intel64_lin/ -lifcore -lifport -lifcoremt_pic -limf -lsvml -lm -lipgo -lirc -lgcc_s -lirc_s -lstdc++ -lquadmath -ldl" \ 210 --with-cxxoptflags="-g -Ofast -wd2196" \ 211 --with-mkl-libflags="-L$MKL_ROOT/lib/intel64 -lmkl_intel_lp64 -lmkl_sequential -lmkl_core -lpthread -lm" \ 212 --with-metis-dir=$ISSM_DIR/externalpackages/petsc/install \ 213 --with-scalapack-lib="/nasa/intel/Compiler/2018.3.222/mkl/lib/intel64/libmkl_scalapack_lp64.so /nasa/intel/Compiler/2018.3.222/mkl/lib/intel64/libmkl_blacs_intelmpi_lp64.so" \ 208 214 --with-mumps-dir=$ISSM_DIR/externalpackages/petsc/install \ 209 --with-fortran-lib="-L/nasa/intel/Compiler/2018.3.222/compilers_and_libraries_2018.3.222/linux/compiler/lib/intel64_lin/ -lifcore -lifport -lgfortran" \ 210 --with-cxxoptflags="-g -O3 -diag-disable=2196 " \ 215 --with-m1qn3-dir=$ISSM_DIR/externalpackages/m1qn3/install \ 211 216 --with-codipack-dir="$ISSM_DIR/externalpackages/codipack/install" \ 212 217 --with-medipack-dir="$ISSM_DIR/externalpackages/medipack/install" \