source: issm/trunk-jpl/jenkins/pine_island-mac-binaries-solid_earth@ 25674

Last change on this file since 25674 was 25674, checked in by jdquinn, 4 years ago

CHG: Updating to PETSc 3.14

  • Property svn:executable set to *
File size: 2.6 KB
RevLine 
[24649]1#--------------------#
2# ISSM Configuration #
3#--------------------#
[20100]4
[24333]5# MATLAB path
[24665]6MATLAB_PATH="/Applications/MATLAB_R2018a.app"
[20338]7
[24649]8# NOTE:
9# - We can disable dependency tracking in the Autotools because the binaries
10# should always be a one-time build.
11#
[24676]12
[24333]13# ISSM CONFIGURATION
[24427]14ISSM_CONFIG='\
[24649]15 --prefix=${ISSM_DIR} \
16 --enable-standalone-executables \
17 --enable-standalone-modules \
18 --enable-standalone-libraries \
19 --disable-dependency-tracking \
20 --with-matlab-dir=${MATLAB_PATH} \
21 --with-python-dir=/System/Library/Frameworks/Python.framework/Versions/2.7 \
22 --with-python-numpy-dir=/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/numpy \
[25617]23 --with-fortran-lib="/usr/local/Cellar/gcc/10.2.0/lib/gcc/10/libgfortran.a /usr/local/Cellar/gcc/10.2.0/lib/gcc/10/libquadmath.a /usr/local/Cellar/gcc/10.2.0/lib/gcc/10/gcc/x86_64-apple-darwin15/10.2.0/libgcc.a" \
[24649]24 --with-mpi-include=${ISSM_DIR}/externalpackages/petsc/install/include \
[24637]25 --with-mpi-libflags="-L${ISSM_DIR}/externalpackages/petsc/install/lib -lmpi -lmpicxx -lmpifort" \
[24649]26 --with-blas-lapack-dir=${ISSM_DIR}/externalpackages/petsc/install \
27 --with-metis-dir=${ISSM_DIR}/externalpackages/petsc/install \
28 --with-scalapack-dir=${ISSM_DIR}/externalpackages/petsc/install \
29 --with-mumps-dir=${ISSM_DIR}/externalpackages/petsc/install \
[25244]30 --with-hdf5-dir=${ISSM_DIR}/externalpackages/petsc/install \
[24649]31 --with-petsc-dir=${ISSM_DIR}/externalpackages/petsc/install \
32 --with-triangle-dir=${ISSM_DIR}/externalpackages/triangle/install \
[25244]33 --with-boost-dir=${ISSM_DIR}/externalpackages/boost/install
[24333]34'
[20100]35
[24649]36#-------------------#
37# External Packages #
38#-------------------#
[20100]39
[25244]40#List of external pakages to be installed and their installation scripts
[24333]41EXTERNALPACKAGES="
[25244]42 autotools install.sh
43 cmake install.sh
[25674]44 petsc install-3.14-mac-solid_earth-static.sh
[25244]45 boost install-1.7-mac-static.sh
46 triangle install-mac-static.sh
47 chaco install.sh
48 m1qn3 install.sh
49 semic install.sh
50 curl install-7.67-static.sh
51 netcdf install-4.7-mac-parallel-static.sh
52 proj install-6.2-static.sh
53 gdal install-3-python-netcdf-static.sh
54 gshhg install.sh
55 gmt install-6.0-mac-static.sh
56 gmsh install-4-static.sh
57 shell2junit install.sh
[24333]58"
[20100]59
[24649]60#---------#
61# Testing #
62#---------#
[20100]63
[25244]64# Test suites
65MATLAB_TEST=0
66PYTHON_TEST=0
67JAVASCRIPT_TEST=0
68EXAMPLES_TEST=0
69
[24277]70# Number of CPUs used in ISSM compilation
71#
72# NOTE: One is usually safer as some packages are very sensitive to parallel
[24394]73# compilation
[24277]74#
[25244]75NUMCPUS_INSTALL=4
[20100]76
[24277]77# Number of CPUs used in the nightly runs
[24649]78NUMCPUS_RUN=1
[20100]79
[24277]80# Nightly run options
81#
[24649]82# See documentation in test/NightlyRun/runme.* for more information.
[24277]83#
[25244]84MATLAB_NROPTIONS=""
[24649]85PYTHON_NROPTIONS=""
Note: See TracBrowser for help on using the repository browser.