Default Output Files

The default command line does not include any options and has a Fortran source file as its input argument:

IA-32 compiler:

prompt>ifc x.f90

Itanium compiler:

prompt>efc x.f90

The default compiler command produces an x executable file. The compiler command also produces an object file, x.o, and places it in the current directory.

You can compile more than one input files:

IA-32 compiler:

prompt>ifc x.f90 y.f90 z.f90   

Itanium compiler:

prompt>efc x.f90 y.f90 z.f90

The above command will do the following:

To generate assembly files, use the -S option.