Intel® Fortran Compiler XE 13.1 User and Reference Guides

Invoking the Intel® Fortran Compiler

The command to invoke the compiler is ifort.

Note

For Windows* OS and OS X* systems, you can also use the compiler from within the integrated development environment (IDE).

Requirements Before Using the Command Line

On Linux* and OS X* operating systems, environment variables that specify locations for compiler components need to be set 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.

On Windows* OS, you typically do not need to set any environment variables prior to using the command line. Each of the Visual Studio* IDE variations has its own compiler command-line window, available from the Intel® Parallel Studio XE 2013 program folder with the appropriate environment variables set for the command-line.

Using the ifort Command from the Command Line

Use the ifort command in a command line or makefile to invoke the Intel® Fortran compiler. The syntax is:

ifort [options]input_file(s)

For a complete listing of compiler options, see the Compiler Options reference.

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 the compiler and linker.

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:

Note

On Linux* OS systems, 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.

You can also use ld (Linux* OS and OS X*) or link (Windows* OS) 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 /? (Windows* OS) 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.

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 (Linux* OS and OS X*) or /watch (Windows* OS) command-line option can help clarify which component is generating the error.

Note

Windows* OS systems support characters in Unicode* (multibyte) format; the compiler will process file names containing Unicode* characters.

Syntax Rules

The following rules apply when specifying ifort on the command line:

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 x.obj (Windows* OS). The c option prevents linking (it does not link the object file into an executable file):

ifort -c x.for (Linux* OS and OS X*)
ifort x.for /c (Windows* OS)

The following command links x.o or x.obj into an executable file. This command automatically links with the default Intel(R) Fortran libraries:

ifort x.o (Linux* OS and OS X*)
ifort x.obj (Windows* OS)

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 (on Linux* OS and OS X*) or a.exe (Windows* OS):

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 -o (Linux* OS and OS X*) or /exe (Windows* OS) option:

ifort x.for -o myprog.out (Linux* OS and OS X*)
ifort x.for /exe:myprog.exe (Windows* OS)

To redirect output to a file and then display the program output (Linux* OS and OS X*):

myprog > results.lis (Linux* OS and OS X*)
more results.lis

To place standard output into file one.out and standard error into file two.out (Windows* OS):

ifort filenames /options 1>one.out 2>two.out (Windows* OS)

Or

ifort filenames /options >one.out 2>two.out

To place standard output and standard error into a single file both.out (Windows* OS):

ifort filenames /options 1>both.out 2>&1 (Windows* OS)

Or

ifort filenames /options >both.out 2>&1

Other Methods for using the Command Line Window to Invoke the Compiler

See Also


Submit feedback on this help topic