Ignore:
Timestamp:
09/03/18 22:29:57 (7 years ago)
Author:
jdquinn
Message:

BUG: Copied to wrong MPICH install script; missing backslash in Jenkins config.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/externalpackages/mpich/install-3.2-linux64-static.sh

    r22182 r23209  
    99$ISSM_DIR/scripts/DownloadExternalPackage.py 'http://issm.jpl.nasa.gov/files/externalpackages/mpich-3.2.tar.gz' 'mpich-3.2.tar.gz'
    1010
    11 #Untar 
     11#Untar
    1212tar -zxvf  mpich-3.2.tar.gz
    1313
     
    1919cd src
    2020./configure \
    21         --prefix="$ISSM_DIR/externalpackages/mpich/install"
     21        --prefix="$ISSM_DIR/externalpackages/mpich/install" \
     22        --disable-shared \
     23        --enable-strict=all \
     24        --with-pic
    2225
    23 #Compile mpich (this new version supports parallel make)
    24 if [ $# -eq 0 ]; then
    25         make
    26 else
    27         make -j $1
    28 fi
    29 make install
     26# #Compile mpich (this new version supports parallel make)
     27# if [ $# -eq 0 ]; then
     28#       make
     29# else
     30#       make -j $1
     31# fi
     32
     33#Compile MPICH with one thread
     34make
     35
     36make install
Note: See TracChangeset for help on using the changeset viewer.