This is the mail archive of the
fortran@gcc.gnu.org
mailing list for the GNU Fortran project.
Re: gfortran problems
Hi,
> is their any chance to solv the problem or how can i switch back to the
> old g77 version ?
you really should use gfortran instead of g77. g77 is not being
developed any more, and you will not get any support for it. gfortran
is the official successor to g77 as the GNU Fortran compiler since GCC
release 4.0, and is able to compile F95 and (most) F2003 code, while
maintaining backward compatibility to g77.
> coms.f:192.7:
> ? ?Eingefügt bei make22.f:3353:
>
> ? ? + ? ? ? ?p0s(smax), pxs(smax), pys(smax), pzs(smax),
> ? ? ? 1
> Warnung: Tab-Zeichen bei (1) passt nicht
Apart from the one error that Tobias already pointed out, most of your
warnings are caused by tab characters. Try compiling with -Wtabs to
get rid of them.
Cheers,
Janus