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 a.f90

Itanium compiler:

prompt>efc a.f90

The default compiler command produces an a.out executable file. If the -c option was used, the compiler command also produces an object file, a.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. The compilation stops at producing the assembly file.