Changeset 13155


Ignore:
Timestamp:
08/27/12 10:14:11 (13 years ago)
Author:
utke
Message:

for the time being use the branch held on gitorious

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/externalpackages/adolc/install-dev.sh

    r13079 r13155  
    11#!/bin/bash
    2 
    3 #some issues on macosx64 with ISSM's autoconf. you might want to run native to mac on this.
     2set -eu
    43
    54#Some cleanup
    6 rm -rf install ADOL-C-2.2.0 trunk
     5rm -rf install adolc_v220_issm
    76
    8 #Create install directories
    9 mkdir install
    10 
    11 svn co https://projects.coin-or.org/svn/ADOL-C/trunk
     7git clone -b 2.2.0_ISSM  git://gitorious.org/~utke/adol-c/adolc_v220_issm.git
    128
    139#Compile ADOL-C
    14 cd trunk
     10cd adolc_v220_issm
    1511
    16 autoconf
     12autoreconf -f -i
    1713./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 \
    2216
    23 if [ -z $1 ]; then
     17if [ $# -eq 0 ]; then
    2418        make
    2519else
Note: See TracChangeset for help on using the changeset viewer.