ompf77 - RWC Omni OpenMP Fortran 77 compiler (ver. 1.1)
SYNOPSIS
ompf77 [options] filename ...
NOTE: This command, ompf77 is obsolete!!! This
command is an alias of "omf77".
Please refer to omf77 man page.
DESCRIPTION
ompf77 is a program to compile OpenMP programs written in Fortran77.
ompf77 processes input files through one or more of with stages:
compilation, assembly, and linking, with preprocessing as a option.
This compiler is a kind of "f2c" (Fortran to C) program, which use the
native C compiler as the backend.
This man page contains descriptions for only ompf77-specific
aspects of the compiler, though it also contains summaries
of some general-purpose options.
ompf77 is a translator which translate Fortran 77 program
into a C program. For a fuller explanation
of the compile options, see options of the backend C compiler which
is specified in the installation. Fortran source files use the suffix
'.f' or '.F': Fortran 77 programs to be preprocessed by cpp use
the suffix '.F'.
-c
Compile or assemble the source files, but do not
link. The compiler output is an object file corresponding to each
source file.
-Dmacro
Define macro macro with the string `1' as its definition.
-Dmacro=defn
Define macro macro as defn.
-g
Produce debugging information.
-Idir
Append directory dir to the list of directories
searched for include files.
-Ldir
Add directory dir to the list of directories to be searched for `-l'.
-llibrary
Use the library named library when linking.
-O
Optimize.
-o file
Place output in file.
-S
Stop after the stage of compilation proper; do not assemble.
The output is an assembler code file for each non-assembler input file specified.
-Umacro
Undefine macro macro.
-x
Stop after parsing leaving the intermediate file.
-X
Stop before calling the backend compiler. Leave the intermediate
C file after OpenMP transformation.