- Timestamp:
- 09/03/18 22:29:57 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/externalpackages/mpich/install-3.2-linux64-static.sh
r22182 r23209 9 9 $ISSM_DIR/scripts/DownloadExternalPackage.py 'http://issm.jpl.nasa.gov/files/externalpackages/mpich-3.2.tar.gz' 'mpich-3.2.tar.gz' 10 10 11 #Untar 11 #Untar 12 12 tar -zxvf mpich-3.2.tar.gz 13 13 … … 19 19 cd src 20 20 ./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 22 25 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 34 make 35 36 make install
Note:
See TracChangeset
for help on using the changeset viewer.