Hello, I'm trying to compile ISSM on linux. Unfortunately i've some problems after typing "make":
CXXLD issm.exe
./.libs/libISSMCore.so: undefined reference to `_gfortran_transfer_integer_write'
./.libs/libISSMCore.so: undefined reference to `_gfortran_st_write_done'
./.libs/libISSMCore.so: undefined reference to `_gfortran_st_write'
collect2: error: ld returned 1 exit status
Makefile: recipe for target 'issm.exe' failed
make: *** Error 1
make: Leaving directory '/home/skime/Downloads/issm/trunk/src/c'
Makefile: recipe for target 'all-recursive' failed
make: *** Error 1
make: Leaving directory '/home/skime/Downloads/issm/trunk/src'
Makefile: recipe for target 'all-recursive' failed
make: *** Error 1
make: Leaving directory '/home/skime/Downloads/issm/trunk'
Makefile: recipe for target 'all' failed
make: *** Error 2
Of course I've installed gfortran compiler. Then I wrote source to the static library in configure.sh by adding: --with-fortran-lib="/usr/lib/gcc/x86_64-linux-gnu/5/libgfortran.a" \
which gave me the same result.
Another idea was to add source to libgfortran.a to MAKEFILE: FORTRANLIB=/usr/lib/gcc/x86_64-linux-gnu/5/libgfortran.a
and the result is:
CXXLD issm.exe
/usr/lib/gcc/x86_64-linux-gnu/5/libgfortran.a(write.o): In function `write_float':
(.text.write_float+0xb2): undefined reference to `signbitq'
/usr/lib/gcc/x86_64-linux-gnu/5/libgfortran.a(write.o): In function `write_float':
(.text.write_float+0xbf): undefined reference to `finiteq'
/usr/lib/gcc/x86_64-linux-gnu/5/libgfortran.a(write.o): In function `write_float':
(.text.write_float+0x133): undefined reference to `quadmath_snprintf'
/usr/lib/gcc/x86_64-linux-gnu/5/libgfortran.a(write.o): In function `write_float':
(.text.write_float+0x254): undefined reference to `finiteq'
/usr/lib/gcc/x86_64-linux-gnu/5/libgfortran.a(write.o): In function `write_float':
(.text.write_float+0xaff): undefined reference to `isnanq'
/usr/lib/gcc/x86_64-linux-gnu/5/libgfortran.a(write.o): In function `write_float':
(.text.write_float+0xb83): undefined reference to `quadmath_snprintf'
/usr/lib/gcc/x86_64-linux-gnu/5/libgfortran.a(write.o): In function `write_float':
(.text.write_float+0xf7d): undefined reference to `quadmath_snprintf'
/usr/lib/gcc/x86_64-linux-gnu/5/libgfortran.a(write.o): In function `write_float':
(.text.write_float+0x10d8): undefined reference to `quadmath_snprintf'
collect2: error: ld returned 1 exit status
Makefile: recipe for target 'issm.exe' failed
make: *** Error 1
make: Leaving directory '/home/skime/Downloads/issm/trunk/src/c'
Makefile: recipe for target 'all-recursive' failed
make: *** Error 1
make: Leaving directory '/home/skime/Downloads/issm/trunk/src'
Makefile: recipe for target 'all-recursive' failed
make: *** Error 1
make: Leaving directory '/home/skime/Downloads/issm/trunk'
Makefile: recipe for target 'all' failed
make: *** Error 2
I think I'm close. Do you have any other ideas? Thanks in advance.