source: issm/branches/trunk-larour-SLPS2020/jenkins/ross-debian_linux-binaries-with_dakota@ 25329

Last change on this file since 25329 was 24842, checked in by jdquinn, 5 years ago

CHG: Using Boost 1.7 now.

  • Property svn:executable set to *
File size: 2.5 KB
Line 
1#--------------------#
2# ISSM Configuration #
3#--------------------#
4
5MATLAB_PATH="/usr/local/MATLAB/R2019b"
6
7# NOTE:
8# - We can disable dependency tracking in the Autotools because the binaries
9# should always be a one-time build.
10# - libgfortran will not be available in $ISSM_DIR/lib at compile time: it is
11# copied by packaging script.
12#
13ISSM_CONFIG='\
14 --prefix="${ISSM_DIR}" \
15 --enable-standalone-executables \
16 --enable-standalone-modules \
17 --enable-standalone-libraries \
18 --disable-dependency-tracking \
19 --with-cxxoptflags="-std=c++11" \
20 --with-numthreads=4 \
21 --with-pic \
22 --with-matlab-dir=${MATLAB_PATH} \
23 --with-python-dir=/usr \
24 --with-python-numpy-dir=/usr/local/lib/python2.7/dist-packages/numpy \
25 --with-fortran-lib="-L${ISSM_DIR}/lib -lgfortran" \
26 --with-mpi-include=${ISSM_DIR}/externalpackages/petsc/install/include \
27 --with-mpi-libflags="-L${ISSM_DIR}/externalpackages/petsc/install/lib -lmpi -lmpicxx -lmpifort" \
28 --with-blas-lapack-dir=${ISSM_DIR}/externalpackages/petsc/install \
29 --with-metis-dir=${ISSM_DIR}/externalpackages/petsc/install \
30 --with-scalapack-dir=${ISSM_DIR}/externalpackages/petsc/install \
31 --with-mumps-dir=${ISSM_DIR}/externalpackages/petsc/install \
32 --with-petsc-dir=${ISSM_DIR}/externalpackages/petsc/install \
33 --with-gsl-dir=${ISSM_DIR}/externalpackages/gsl/install \
34 --with-boost-dir=${ISSM_DIR}/externalpackages/boost/install \
35 --with-dakota-dir=${ISSM_DIR}/externalpackages/dakota/install \
36 --with-triangle-dir=${ISSM_DIR}/externalpackages/triangle/install \
37 --with-chaco-dir=${ISSM_DIR}/externalpackages/chaco/install \
38 --with-m1qn3-dir=${ISSM_DIR}/externalpackages/m1qn3/install \
39 --with-semic-dir=${ISSM_DIR}/externalpackages/semic/install \
40'
41
42#-------------------#
43# External Packages #
44#-------------------#
45
46EXTERNALPACKAGES="
47 autotools install-debian-linux.sh
48 cmake install.sh
49 petsc install-3.12-linux-static.sh
50 gsl install-static.sh
51 boost install-1.7-linux-static.sh
52 dakota install-6.2-linux-static.sh
53 triangle install-linux-static.sh
54 chaco install.sh
55 m1qn3 install.sh
56 semic install.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=8
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.