Requirements Before Using the Command Line on Linux* OS and OS X*
You need to set some environment variables to specify locations for the various components prior to using the command line. The Intel® Fortran Compiler installation includes a shell script for setting environment variables that can run in the terminal window. For more information, see Using the compilervars File to Specify Location of Components.
Using the Intel® Fortran Compiler from the Command Line
You can invoke the Intel® Fortran Compiler on the command line using the ifort command.
The syntax of the ifort command is:
ifort [options]input_file(s)
The ifort command can compile and link projects in one step or compile them then link them as a separate step.
In most cases, a single ifort command will invoke both the compiler and linker. You can also use ld (Linux* OS and OS X*) or to build libraries of object modules. These commands provide syntax instructions at the command line if you request it with the help (Linux* OS and OS X*) or option.
The ifort command automatically references the appropriate Intel® Fortran Run-Time Libraries when it invokes the linker. To link one or more object files created by the Intel® Fortran compiler, you should use the ifort command instead of the link command.
The ifort command invokes a driver program that is the user interface to the compiler and linker. It accepts a list of command options and file names and directs processing for each file. The driver program does the following:
Calls the Intel® Fortran Compiler to process Fortran files.
Passes the linker options to the linker.
Passes object files created by the compiler to the linker.
Passes libraries to the linker.
Calls the linker or librarian to create the executable or library file.
Because the driver calls other software components, error messages may be returned by other components. For instance, the linker may return a message if it cannot resolve a global reference. The watch option can help clarify which component is generating an error.
For a complete listing of compiler options, see the Compiler Options reference.
Note
The compiler recognizes Language Extensions for Offloading in the source program by default and builds a heterogeneous binary that runs on both the target and host when any are present. If your program includes these language extensions and you do not want to build a heterogeneous binary, specify the -no-offload compiler option. For more information, see the Programming for Intel® MIC Architecture: Heterogeneous Programming section and the -no-offload compiler option.
Syntax Rules
The following rules apply when specifying ifort on the command line:
An option is specified by one or more letters preceded by a hyphen (-) for Linux* OS and OS X* or a slash (/) for Windows* OS. (You can use a hyphen (-) instead of a slash (/) for Windows* OS, but this is not the preferred method.)
Multipleinput_files can be specified, using a space as a delimiter. When a file is not in PATH or working directory, specify the directory path before the file name. The filename extension specifies the type of file. See Understanding File Extensions.
Some options take arguments in the form of filenames, strings, letters, or numbers. Except where otherwise noted, a space between the option and its argument(s) can be entered or combined. For a complete listing of compiler options, see the Compiler Options reference.
Note
Options on the command line apply to all files. In the following example, the -c and -nowarn options apply to both files x.f and y.f:
ifort -c x.f -nowarn y.f
Options cannot be combined with a single slash or hyphen, you must specify the slash or hyphen for each option specified. For example: /1 /c is correct, but /1c is not.
Some compiler options are case-sensitive. For example, c and C are two different options.
Options can take arguments in the form of filenames, strings, letters, and numbers. If a string includes spaces, they must be enclosed in quotation marks.
All compiler options must precede the -Xlinker (Linux* OS and OS X*) or options. Options that appear following -Xlinker or /link are passed directly to the linker.
Unless specified with certain options, the command line will both compile and link the files you specify. To compile without linking, specify the c option.
Option names can be abbreviated, enter as many characters as are needed to uniquely identify the option.
Compiler options remain in effect for the whole compilation unless overridden by a compiler directive.
Examples of the ifort Command
The following command compiles x.for, links, and creates an executable file. This command generates a temporary object file, which is deleted after linking:
ifort x.for
The following command compiles x.for and generates the object file x.o (Linux* OS and OS X*) or . The c option prevents linking (it does not link the object file into an executable file):
// (Linux* OS and OS X*)
ifort -c x.for
The following command links x.o or x.obj into an executable file. This command automatically links with the default Intel® Fortran libraries:
// (Linux* OS and OS X*)
ifort x.o
The following command compiles a.for, b.for, and c.for, creating three temporary object files, then linking the object files into an executable file named a.out (Linux* OS and OS X*) or .
ifort a.for b.for c.for
Compile the source files that define modules before the files that reference the modules (in USE statements) when using modules and compile multiple files.
When you use a single ifort command, the order in which files are placed on the command line is significant. For example, if the free-form source file moddef.f90 defines the modules referenced by the file projmain.f90, use the following syntax:
ifort moddef.f90 projmain.f90
To specify a particular name for the executable file, specify the option -o (Linux* OS and OS X*) or :
// (Linux* OS and OS X*)
ifort x.for -o myprog.out
To redirect output to a file and then display the program output (Linux* OS and OS X*):
// (Linux* OS and OS X*) myprog > results.lis more results.lis
Other Methods for using the Command Line Window to Invoke the Compiler
Using makefiles from the Command Line: Use makefiles to specify a number of files with various paths and to save this information for multiple compilations. For more information on using makefiles, see Using Makefiles to Compile Your Application.