Changeset 23209


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.

Location:
issm/trunk
Files:
3 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
  • issm/trunk/externalpackages/mpich/install-3.2-linux64.sh

    r23208 r23209  
    2020./configure \
    2121        --prefix="$ISSM_DIR/externalpackages/mpich/install" \
    22         --disable-shared \
    23         --enable-strict=all \
    24         --with-pic
     22        --enable-shared
    2523
    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
    34 make
    35 
     24#Compile mpich (this new version supports parallel make)
     25if [ $# -eq 0 ]; then
     26        make
     27else
     28        make -j $1
     29fi
    3630make install
    37 
  • issm/trunk/jenkins/linux64_ross_static

    r23208 r23209  
    2020        --with-m1qn3-dir=$ISSM_DIR/externalpackages/m1qn3/install \
    2121        --with-math77-dir=$ISSM_DIR/externalpackages/math77/install \
    22         --with-fortran-lib="-L/usr/lib/gcc/x86_64-linux-gnu/4.9 -lgfortran"
     22        --with-fortran-lib="-L/usr/lib/gcc/x86_64-linux-gnu/4.9 -lgfortran" \
    2323        --with-pic'
    2424
Note: See TracChangeset for help on using the changeset viewer.