Changeset 18413
- Timestamp:
- 08/15/14 21:24:50 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/packagers/macosx/install.sh
r18412 r18413 106 106 cd $ISSM_DIR 107 107 echo "Aureconf..." 108 autoreconf -if &> /dev/null108 autoreconf -if 109 109 echo "Configuring..." 110 $ISSM_DIR/configs/config-macosx64-static.sh 110 ./configure \ 111 --prefix=$ISSM_DIR \ 112 --disable-static \ 113 --enable-standalone-executables \ 114 --enable-standalone-libraries \ 115 --with-matlab-dir="/Applications/MATLAB_R2011b.app/" \ 116 --with-triangle-dir=$ISSM_DIR/externalpackages/triangle/install \ 117 --with-metis-dir=$ISSM_DIR/externalpackages/petsc/install \ 118 --with-petsc-dir=$ISSM_DIR/externalpackages/petsc/install \ 119 --with-mpi-include=$ISSM_DIR/externalpackages/mpich/install/include \ 120 --with-mpi-libflags=" -L$ISSM_DIR/externalpackages/mpich/install/lib -lmpich -lpmpich" \ 121 --with-scalapack-dir=$ISSM_DIR/externalpackages/petsc/install \ 122 --with-mumps-dir=$ISSM_DIR/externalpackages/petsc/install \ 123 --with-fortran-lib="/usr/local/lib/libgfortran.a" \ 124 --enable-debugging \ 125 --with-numthreads=4 126 111 127 if [ $? -ne 0 ]; then echo "FAILED TO CONFIGURE!" && exit 1; fi 112 128 … … 116 132 117 133 echo "Installing..." 118 make install &> /dev/null134 make install 119 135 if [ $? -ne 0 ]; then echo "FAILED TO INSTALL!" && exit 1; fi 120 136 #}}}
Note:
See TracChangeset
for help on using the changeset viewer.