f2gcc [option ... ]
DESCRIPTION
F2gcc converts and compiles FORTRAN source files ending in '.f'
or '.F', using f2c and gcc. It will also compile C, C++ and
Objective C programs directly with gcc.
The following options are passed to f2c and have the same
meaning as in f77(1).
-C Compile code to check that subscripts are within
declared array bounds.
-onetrip
Compile DO loops that are performed at least once if
reached. (Fortran 77 DO loops are not performed at all
if the upper limit is smaller than the lower limit.)
-U Honor the case of variable and external names. Fortran
keywords must be in lower case.
-u Make the default type of a variable `undefined' rather
than using the default Fortran rules.
-w Suppress all warning messages. If the option is
`-w66', only Fortran 66 compatibility warnings are sup-
pressed.
F2gcc automatically invokes the compiler with options to
include the f2c.h header files, and -lF77 -lI77 -lm.
All other arguments are passed directly to gcc(1).
SEE ALSO
f2c(1), gcc(1), cpp(1)