Hi:
In case someone else wants to use MacPorts instead of HomeBrew on a Mac, below are a few notes.
I installed ISSM on my M1 Mac with Monterey using MacPorts instead of HomeBrew and installing gfortran from [https://github.com/fxcoudert/gfortran-for-macOS/releases]. After some tweaking, I was able to configure and compile ISSM using:
./configure \
--prefix="${ISSM_DIR}" \
--with-python-version=3.10 \
--with-python-dir="/opt/local/Library/Frameworks/Python.framework/Versions/Current/" \
--with-python-numpy-dir="/opt/local/Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages/numpy" \
--with-fortran-lib="-L/opt/local/lib/gcc12/ -lgfortran" \
--with-mpi-include="${ISSM_DIR}/externalpackages/petsc/install/include" \
--with-mpi-libflags="-L${ISSM_DIR}/externalpackages/petsc/install/lib -lmpi -lmpicxx -lmpifort" \
--with-metis-dir="${ISSM_DIR}/externalpackages/petsc/install" \
--with-parmetis-dir="${ISSM_DIR}/externalpackages/petsc/install" \
--with-blas-lapack-dir="${ISSM_DIR}/externalpackages/petsc/install" \
--with-scalapack-dir="${ISSM_DIR}/externalpackages/petsc/install" \
--with-mumps-dir="${ISSM_DIR}/externalpackages/petsc/install" \
--with-petsc-dir="${ISSM_DIR}/externalpackages/petsc/install" \
--with-triangle-dir="${ISSM_DIR}/externalpackages/triangle/install" \
--with-chaco-dir="${ISSM_DIR}/externalpackages/chaco/install" \
--with-m1qn3-dir="${ISSM_DIR}/externalpackages/m1qn3/install"
You may need to adjust your python version, I'm currently using 3.10.
When I tried to import the python bindings, I got the following error:
ImportError: dlopen(/Users/andy/ISSM/lib/IssmConfig_python.so, 0x0002): Library not loaded: @rpath/libgfortran.5.dylib
Referenced from: /Users/andy/ISSM/lib/IssmConfig_python.so
Reason: tried: '/usr/local/lib/libgfortran.5.dylib' (no such file), '/usr/lib/libgfortran.5.dylib' (no such file)
which is no surprise because gfortran was automatically installed to /usr/local/gfortran
: /usr/local/gfortran/lib/libgfortran.5.dylib
.
The problem was solved by
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/gfortran/lib
export DYLD_LIBRARY_PATH=$DYLD_LIBRARY_PATH:/usr/local/gfortran/lib
(I'm not sure which one did the trick).