source: issm/trunk-jpl/jenkins/macosx_pine-island@ 20395

Last change on this file since 20395 was 20395, checked in by Mathieu Morlighem, 9 years ago

CHG: fixing parser

  • Property svn:executable set to *
File size: 2.2 KB
RevLine 
[20100]1
2#-------------------------------#
3# 1: ISSM general configuration #
4#-------------------------------#
5
[20338]6#MATLAB path
7MATLAB_PATH="/Applications/MATLAB_R2015b.app/"
8
[20100]9#ISSM CONFIGURATION
10ISSM_CONFIG='--prefix=$ISSM_DIR \
[20338]11 --with-matlab-dir=$MATLAB_PATH \
[20100]12 --with-triangle-dir=$ISSM_DIR/externalpackages/triangle/install \
13 --with-mpi-include=$ISSM_DIR/externalpackages/mpich/install/include \
14 --with-mpi-libflags="-L$ISSM_DIR/externalpackages/mpich/install/lib -lpmpich -lmpich -lmpl" \
15 --with-petsc-dir=$ISSM_DIR/externalpackages/petsc/install \
16 --with-scalapack-dir=$ISSM_DIR/externalpackages/petsc/install/ \
17 --with-mumps-dir=$ISSM_DIR/externalpackages/petsc/install \
18 --with-metis-dir=$ISSM_DIR/externalpackages/petsc/install \
19 --with-m1qn3-dir=$ISSM_DIR/externalpackages/m1qn3/install \
[20233]20 --with-numthreads=4 \
[20100]21 --enable-debugging \
22 --enable-development'
23
24#PYTHON and MATLAB testing
25MATLAB_TEST=1
26PYTHON_TEST=0
27
28#-----------------------------------#
29# 3: External packages installation #
30#-----------------------------------#
31
32#List of external pakages to be installed and their installation scripts
[20233]33EXTERNALPACKAGES="autotools install.sh
[20240]34 cmake install.sh
[20241]35 mpich install-3.0-macosx64.sh
[20233]36 m1qn3 install.sh
[20241]37 petsc install-3.6-macosx64.sh
[20233]38 triangle install-macosx64.sh
39 shell2junit install.sh"
[20100]40
41#---------------------#
42# 4: ISSM Compilation #
43#---------------------#
44
45#ISSM_COMPILATION can have 2 values:
46# - "yes" compile ISSM
47# - "no" do not compile ISSM
48ISSM_COMPILATION="yes"
49
50#------------------------#
51# 5: Nightly run options #
52#------------------------#
53
54#number of cpus used in ISSM installation and compilation (one is usually
55#safer as some packages are very sensitive to parallel compilation)
[20104]56NUMCPUS_INSTALL=4
[20100]57
58#number of cpus used in the nightly runs.
[20104]59NUMCPUS_RUN=2
[20100]60
61#Nightly run options. The matlab routine runme.m will be called
62#as follows: runme($MATLAB_NROPTIONS). The options must be understandable
63#by Matlab and runme.m
64#ex: "'id',[101 102 103]"
[20243]65## bamg mesh FS
[20100]66PYTHON_NROPTIONS=""
[20243]67MATLAB_NROPTIONS="'exclude',[119,243,514,701,702,703,435,IdFromString('Dakota')]"
Note: See TracBrowser for help on using the repository browser.