source: issm/trunk-jpl/jenkins/ross-win-msys2-mingw-msmpi-basic@ 26034

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

CHG: Modifications to build system and additional configurations in support of Windows 10 MSYS2 MinGW build

File size: 1.6 KB
Line 
1ISSM_CONFIG='\
2 --prefix=${ISSM_DIR} \
3 --enable-development \
4 --enable-debugging \
5 --with-numthreads=4 \
6 --with-vendor="win-msys2" \
7 --with-matlab-dir=${MATLAB_PATH} \
8 --with-mpi-include="${MSMPI_ROOT}/include" \
9 --with-mpi-libdir="${MSMPI_ROOT}/lib" \
10 --with-mpi-libflags="-lmsmpi" \
11 --with-fortran-lib="-L/c/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/10.2.0/ -lgfortran" \
12 --with-metis-dir="${ISSM_DIR}/externalpackages/petsc/install" \
13 --with-parmetis-dir="${ISSM_DIR}/externalpackages/petsc/install" \
14 --with-blas-lapack-dir="${ISSM_DIR}/externalpackages/petsc/install" \
15 --with-scalapack-dir=$ISSM_DIR/externalpackages/petsc/install \
16 --with-mumps-dir=$ISSM_DIR/externalpackages/petsc/install \
17 --with-petsc-dir="${ISSM_DIR}/externalpackages/petsc/install" \
18 --with-triangle-dir="${ISSM_DIR}/externalpackages/triangle/install" \
19'
20
21#-------------------#
22# External Packages #
23#-------------------#
24
25#List of external pakages to be installed and their installation scripts
26EXTERNALPACKAGES="
27 petsc install-3.14-win-msys2-mingw-msmpi.sh
28 triangle install-win-msys2-mingw.sh
29 shell2junit install.sh
30"
31
32#---------#
33# Testing #
34#---------#
35
36# Test suites
37MATLAB_TEST=1
38PYTHON_TEST=0
39JAVASCRIPT_TEST=0
40EXAMPLES_TEST=0
41
42# Number of CPUs used in ISSM compilation
43#
44# NOTE: One is usually safer as some packages are very sensitive to parallel
45# compilation
46#
47NUMCPUS_INSTALL=4
48
49# Number of CPUs used in the nightly runs
50NUMCPUS_RUN=1
51
52# Nightly run options
53#
54# See documentation in test/NightlyRun/runme.* for more information
55#
56MATLAB_NROPTIONS="'id',[101,102,201,202]"
57PYTHON_NROPTIONS=""
Note: See TracBrowser for help on using the repository browser.