Closed rosagierens closed 1 year ago
Apparently the more recent versions of gfortran are more picky. You can get around by adding the flag -fallow-argument-mismatch
in the Makefile:
F90FLAGS = -fallow-argument-mismatch -ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -O2
Thank you, this solved the problem!
Thank you, this solved the problem!
Hey, I just downloaded the source code for the open source version 5 (
catalog.py -R 5.0 -sd
) and while compiling with gfortran I get type mismatch errors in the module GridValues_mod:Libraries used: GNU Fortran version 11.3.0 NetCDF version 4.5.4 Open MPI version 4.1.4
I'm using the compiler flags given in the Makefile for gfortran (
-ffree-line-length-none -fdefault-real-8 -fdefault-double-8 -O2
).Do you have any suggestions on how to fix/work around the problem?