Changeset 13155
- Timestamp:
- 08/27/12 10:14:11 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/externalpackages/adolc/install-dev.sh
r13079 r13155 1 1 #!/bin/bash 2 3 #some issues on macosx64 with ISSM's autoconf. you might want to run native to mac on this. 2 set -eu 4 3 5 4 #Some cleanup 6 rm -rf install ADOL-C-2.2.0 trunk5 rm -rf install adolc_v220_issm 7 6 8 #Create install directories 9 mkdir install 10 11 svn co https://projects.coin-or.org/svn/ADOL-C/trunk 7 git clone -b 2.2.0_ISSM git://gitorious.org/~utke/adol-c/adolc_v220_issm.git 12 8 13 9 #Compile ADOL-C 14 cd trunk10 cd adolc_v220_issm 15 11 16 auto conf12 autoreconf -f -i 17 13 ./configure --prefix=$ISSM_DIR/externalpackages/adolc/install \ 18 # --enable-sparse \ 19 # --enable-docexa \ 20 # --enable-addexa \ 21 # --disable-shave 14 --enable-docexa \ 15 --enable-addexa \ 22 16 23 if [ -z $1]; then17 if [ $# -eq 0 ]; then 24 18 make 25 19 else
Note:
See TracChangeset
for help on using the changeset viewer.