- ISSM version: 4.17
- compiler: GCC 9.3.0
When I compile ISSM with GCC 9.3.0, it exports error messages as follows:
modules/FourierLoveCorex/model.f90:9:5:
9 | use lnb_param
| 1
Fatal Error: Cannot read module file 'lnb_param.mod' opened at (1), because it was created by a different version of GNU Fortran
compilation terminated.
Makefile:8449: recipe for target 'modules/FourierLoveCorex/model.lo' failed
make[3]: *** [modules/FourierLoveCorex/model.lo] Error 1
make[3]: *** Waiting for unfinished jobs....
FC modules/FourierLoveCorex/love_numbers.lo
modules/FourierLoveCorex/util.f90:3:5:
3 | use model
| 1
Fatal Error: Cannot read module file 'model.mod' opened at (1), because it was created by a different version of GNU Fortran
compilation terminated.
Makefile:8449: recipe for target 'modules/FourierLoveCorex/util.lo' failed
make[3]: *** [modules/FourierLoveCorex/util.lo] Error 1
modules/FourierLoveCorex/lovenb_sub.f90:3:5:
3 | use util
| 1
Fatal Error: Cannot read module file 'util.mod' opened at (1), because it was created by a different version of GNU Fortran
compilation terminated.
Makefile:8449: recipe for target 'modules/FourierLoveCorex/lovenb_sub.lo' failed
make[3]: *** [modules/FourierLoveCorex/lovenb_sub.lo] Error 1
modules/FourierLoveCorex/love_numbers.f90:8:5:
8 | use util
| 1
Fatal Error: Cannot read module file 'util.mod' opened at (1), because it was created by a different version of GNU Fortran
compilation terminated.
I guess that the gfortran module version of *.mod
is different to my compiler's version.
I found the gfortran module version of *.mod
is 10 associated to old GCC 4.8.
Is there any way to compile ISSM with latest GCC?