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
Line 
1#--------------------#
2# ISSM Configuration #
3#--------------------#
4
5# MATLAB path
6MATLAB_PATH="/Applications/MATLAB_R2018a.app"
7
8# NOTE:
9# - We can disable dependency tracking in the Autotools because the binaries
10# should always be a one-time build.
11#
12
13# ISSM CONFIGURATION
14ISSM_CONFIG='\
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 \
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" \
24 --with-mpi-include=${ISSM_DIR}/externalpackages/petsc/install/include \
25 --with-mpi-libflags="-L${ISSM_DIR}/externalpackages/petsc/install/lib -lmpi -lmpicxx -lmpifort" \
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 \
30 --with-hdf5-dir=${ISSM_DIR}/externalpackages/petsc/install \
31 --with-petsc-dir=${ISSM_DIR}/externalpackages/petsc/install \
32 --with-triangle-dir=${ISSM_DIR}/externalpackages/triangle/install \
33 --with-boost-dir=${ISSM_DIR}/externalpackages/boost/install
34'
35
36#-------------------#
37# External Packages #
38#-------------------#
39
40#List of external pakages to be installed and their installation scripts
41EXTERNALPACKAGES="
42 autotools install.sh
43 cmake install.sh
44 petsc install-3.14-mac-solid_earth-static.sh
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
58"
59
60#---------#
61# Testing #
62#---------#
63
64# Test suites
65MATLAB_TEST=0
66PYTHON_TEST=0
67JAVASCRIPT_TEST=0
68EXAMPLES_TEST=0
69
70# Number of CPUs used in ISSM compilation
71#
72# NOTE: One is usually safer as some packages are very sensitive to parallel
73# compilation
74#
75NUMCPUS_INSTALL=4
76
77# Number of CPUs used in the nightly runs
78NUMCPUS_RUN=1
79
80# Nightly run options
81#
82# See documentation in test/NightlyRun/runme.* for more information.
83#
84MATLAB_NROPTIONS=""
85PYTHON_NROPTIONS=""
Note: See TracBrowser for help on using the repository browser.