OK! So I added the line
--with-fortran-lib="-L/usr/lib/x86_64-linux-gnu/ -lgfortran" \
to the configure script, and have compiled without error. For reference, the final install function for Ubuntu 16.04.3 is printed below.
One final question: I do not use Matlab, and would like to start using the Python interpreter. I see that you have a script "mToPy.py" that may possibly convert arbitrary issm matlab scripts to python. Does this work?
Also, I found some scripts that appear to have been converted in "/trunk/test/Par"; however, they import some functions defined in scripts located in "/trunk/src/py3" that have not been added to pythonpath during installation. Do you have any additional scripts or a suggested method for finishing the python installation?
I will be working with Greenland's 79 N Glacier, so perhaps the "79North.py" script is where I should begin?
Thanks for you fast responses,
Evan
function install_issm()
{
sudo apt-get install libtool cmake autotools-dev python python-numpy;
svn --username anon --password anon checkout http://issm.ess.uci.edu/svn/issm/issm/trunk ./issm;
cd issm/externalpackages/m1qn3;
./install.sh;
source $ISSM_DIR/etc/environment.sh;
cd ../mpich/;
./install-3.0-linux64.sh;
source $ISSM_DIR/etc/environment.sh;
cd ../petsc/;
./install-3.6-linux64.sh;
source $ISSM_DIR/etc/environment.sh;
cd ../triangle/;
./install-linux64.sh;
source $ISSM_DIR/etc/environment.sh;
cd $ISSM_DIR;
autoreconf -ivf;
./configure \
--prefix="$ISSM_DIR" \
--with-python-dir="/usr" \
--with-fortran-lib="-L/usr/lib/x86_64-linux-gnu/ -lgfortran" \
--with-python-numpy-dir="/usr/lib/python2.7/dist-packages/numpy" \
--with-triangle-dir="$ISSM_DIR/externalpackages/triangle/install" \
--with-mpi-include="$ISSM_DIR/externalpackages/mpich/install/include" \
--with-mpi-libflags="-L$ISSM_DIR/externalpackages/mpich/install/lib -lmpich -lmpl" \
--with-petsc-dir="$ISSM_DIR/externalpackages/petsc/install" \
--with-scalapack-dir="$ISSM_DIR/externalpackages/petsc/install/" \
--with-mumps-dir="$ISSM_DIR/externalpackages/petsc/install/" \
--with-blas-lapack-dir="$ISSM_DIR/externalpackages/petsc/install" \
--with-metis-dir="$ISSM_DIR/externalpackages/petsc/install/" \
--with-m1qn3-dir="$ISSM_DIR/externalpackages/m1qn3/install" \
--with-numthreads=2;
make -j4;
make install;
}