- Timestamp:
- 02/27/20 12:36:56 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/externalpackages/adolc/install-withampi.sh
r23435 r24610 1 1 #!/bin/bash 2 2 set -eu 3 4 #Some cleanup 5 rm -rf install src 3 6 4 7 5 # Keeping the following commented line for potential future use. 8 6 #git clone https://gitlab.com/adol-c/adol-c.git src 9 7 10 #Download from ISSM server 11 $ISSM_DIR/scripts/DownloadExternalPackage.sh 'https://issm.ess.uci.edu/files/externalpackages/ADOL-C' 'ADOL-C.tar.gz' 8 ## Environment 9 # 10 export CFLAGS="-O2 -L${ISSM_DIR}/externalpackages/mpich/install/lib -lmpi" 11 export CXXFLAGS="-O2 -std=c++11 -L${ISSM_DIR}/externalpackages/mpich/install/lib -lmpi" 12 12 13 #Untar ADOL-C 14 tar -zxf ADOL-C.tar.gz 13 # Cleanup 14 rm -rf install src 15 mkdir install src 15 16 16 #Compile ADOL-C 17 export CFLAGS="-O2 -L$ISSM_DIR/externalpackages/mpich/install/lib -lmpi" 18 export CXXFLAGS="-O2 -std=c++11 -L$ISSM_DIR/externalpackages/mpich/install/lib -lmpi" 17 # Download source 18 ${ISSM_DIR}/scripts/DownloadExternalPackage.sh "https://issm.ess.uci.edu/files/externalpackages/ADOL-C.tar.gz" "ADOL-C.tar.gz" 19 20 # Unpack source 21 tar -zxvf ADOL-C.tar.gz 22 23 # Configure 19 24 cd src 20 ./configure --prefix=$ISSM_DIR/externalpackages/adolc/install \ 21 --libdir=$ISSM_DIR/externalpackages/adolc/install/lib \ 22 --with-mpi-root=$ISSM_DIR/externalpackages/mpich/install \ 25 ./configure \ 26 --prefix=${ISSM_DIR}/externalpackages/adolc/install \ 27 --libdir=${ISSM_DIR}/externalpackages/adolc/install/lib \ 28 --with-mpi-root=${ISSM_DIR}/externalpackages/mpich/install \ 23 29 --enable-ampi \ 24 --with-ampi=$ ISSM_DIR/externalpackages/adjoinablempi/install \30 --with-ampi=${ISSM_DIR}/externalpackages/adjoinablempi/install \ 25 31 --with-soname=adolc \ 26 32 --disable-tapedoc-values 27 33 34 # Clean 28 35 make clean 36 37 # Compile 29 38 if [ $# -eq 0 ]; then 30 39 make V=1 … … 32 41 make -j $1 V=1 33 42 fi 43 44 # Install 34 45 make V=1 install
Note:
See TracChangeset
for help on using the changeset viewer.