You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Building with GCC 13 fails because Fortran standards, apparently, require a space in a stop code, for instance, it should be stop (1) rather than stop(1). I have not tested with other GCC versions.
These "missing spaces" are present in the following files:
cloudanalysis.fd/get_fv3sar_bk_parallel_mod.f90
rtma_esg_conversion.fd/mod_rtma_regrid.F90
rtma_esg_conversion.fd/rtma_regrid_rll2esg.F90
rtma_esg_conversion.fd/rtma_regrid_esg2rll.F90
Steps to Reproduce
(run cmake build with gcc 13)
Output
/dev/shm/rrfs_utl/rtma_esg_conversion.fd/rtma_regrid_rll2esg.F90:232:10: 232 | stop(2) | 1Error: Blank required in STOP statement near (1)
The text was updated successfully, but these errors were encountered:
Description
Building with GCC 13 fails because Fortran standards, apparently, require a space in a stop code, for instance, it should be
stop (1)
rather thanstop(1)
. I have not tested with other GCC versions.These "missing spaces" are present in the following files:
Steps to Reproduce
(run cmake build with gcc 13)
Output
The text was updated successfully, but these errors were encountered: