Changeset 23225
- Timestamp:
- 09/06/18 10:19:26 (7 years ago)
- Location:
- issm/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/externalpackages/mpich/install-3.2-linux64-static.sh
r23209 r23225 22 22 --disable-shared \ 23 23 --enable-strict=all \ 24 --enable-fast \ 24 25 --with-pic 25 26 26 # #Compile mpich (this new version supports parallel make) 27 # if [ $# -eq 0 ]; then 28 # make 29 # else 30 # make -j $1 31 # fi 32 33 #Compile MPICH with one thread 34 make 27 #Compile mpich (this new version supports parallel make) 28 if [ $# -eq 0 ]; then 29 make 30 else 31 make -j $1 32 fi 35 33 36 34 make install -
issm/trunk/externalpackages/petsc/install-3.7-linux64-static.sh
r22182 r23225 18 18 ./config/configure.py \ 19 19 --prefix="$ISSM_DIR/externalpackages/petsc/install" \ 20 --with-single-library=1 \ 21 --PETSC_DIR="$ISSM_DIR/externalpackages/petsc/src" \ 22 --with-shared-libraries=0 \ 23 --with-pic=1 \ 24 --with-debugging=0 \ 20 25 --with-mpi-dir="$ISSM_DIR/externalpackages/mpich/install" \ 21 --PETSC_DIR="$ISSM_DIR/externalpackages/petsc/src" \ 22 --with-debugging=0 \ 23 --with-valgrind=0 \ 24 --with-x=0 \ 25 --with-ssl=0 \ 26 --with-shared-libraries=0 \ 26 --download-fblaslapack=1 \ 27 27 --download-metis=1 \ 28 28 --download-parmetis=1 \ 29 --with-x=0 \ 30 --download-scalapack=1 \ 29 31 --download-mumps=1 \ 30 --download-fblaslapack=1 \ 31 --download-scalapack=1 \ 32 --COPTFLAGS="-fPIC" \ 33 --CXXOPTFLAGS="-fPIC" \ 34 --FOPTFLAGS="-fPIC" 32 --with-ssl=0 \ 33 --with-valgrind=0 35 34 36 35 #Compile and intall -
issm/trunk/jenkins/linux64_ross_static
r23213 r23225 16 16 --with-mpi-include=$ISSM_DIR/externalpackages/mpich/install/include \ 17 17 --with-mpi-libflags="$ISSM_DIR/externalpackages/mpich/install/lib/libmpifort.a $ISSM_DIR/externalpackages/mpich/install/lib/libmpi.a -lrt -lpthread" \ 18 --with-petsc-dir=$ISSM_DIR/externalpackages/petsc/install 18 --with-petsc-dir=$ISSM_DIR/externalpackages/petsc/install \ 19 19 --with-scalapack-dir=$ISSM_DIR/externalpackages/petsc/install \ 20 20 --with-blas-lapack-dir=$ISSM_DIR/externalpackages/petsc/install \ … … 24 24 --with-math77-dir=$ISSM_DIR/externalpackages/math77/install \ 25 25 --with-fortran-lib="-L/usr/lib/gcc/x86_64-linux-gnu/4.9 -lgfortran" \ 26 --with-pic' 26 --with-pic \ 27 --with-numthreads=4' 27 28 28 29 #PYTHON and MATLAB testing … … 51 52 #number of cpus used in ISSM installation and compilation (one is usually 52 53 #safer as some packages are very sensitive to parallel compilation) 53 NUMCPUS_INSTALL=1 54 NUMCPUS_INSTALL=10 54 55 55 56 #number of cpus used in the nightly runs. 56 NUMCPUS_RUN=1 57 NUMCPUS_RUN=10 57 58 58 59 #Nightly run options. The matlab routine runme.m will be called
Note:
See TracChangeset
for help on using the changeset viewer.