The FORTRAN standard calls for lines with maximum length of 132 characters. By default this is enforced by gfortran.
To fix:
a. Use line continuation to reduce line length to less than 132.
or
b. Use flag -ffree-line-length-none in makefile for gfortran.
The FORTRAN standard calls for lines with maximum length of 132 characters. By default this is enforced by gfortran.
To fix:
a. Use line continuation to reduce line length to less than 132.
or
b. Use flag -ffree-line-length-none in makefile for gfortran.