Changes between Version 46 and Version 47 of pleiadesbash


Ignore:
Timestamp:
04/30/24 13:10:17 (12 months ago)
Author:
Mathieu Morlighem
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • pleiadesbash

    v46 v47  
    3838
    3939And replace `ISSM_DIR` with your actual trunk. ''Log out and log back in'' to apply this change.
     40
     41Note 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```
     43if [ -f ~/.bashrc ]; then . ~/.bashrc; fi
     44```
    4045
    4146== Installing ISSM on Pleiades ==
     
    192197
    193198{{{
    194 #!sh
     199#!bashsh
    195200./configure \
    196201 --prefix=$ISSM_DIR \
     
    200205 --without-Sealevelchange \
    201206 --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" \
    205207 --with-mpi-include=" " \
    206208 --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" \
    208214 --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 \
    211216 --with-codipack-dir="$ISSM_DIR/externalpackages/codipack/install" \
    212217 --with-medipack-dir="$ISSM_DIR/externalpackages/medipack/install" \