Intel® Fortran Compiler Classic and Intel® Fortran Compiler Developer Guide and Reference

ID 767251
Date 9/08/2022
Public

A newer version of this document is available. Customers should click here to go to the newest version.

Document Table of Contents

exe

Specifies the name for a built program or dynamic-link library.

Syntax

Linux:

None

macOS:

None

Windows:

/exe:{filename | dir}

Arguments

filename

Is the name for the built program or dynamic-link library.

dir

Is the directory where the built program or dynamic-link library should be placed. It can include filename.

Default

OFF

The name of the file is the name of the first source file on the command line with file extension .exe, so file.f becomes file.exe.

Description

This option specifies the name for a built program (.EXE) or a dynamic-link library (.DLL).

You can use this option to specify an alternate name for an executable file. This is especially useful when compiling and linking a set of input files. You can use the option to give the resulting file a name other than that of the first input file (source or object) on the command line.

You can use this option to specify an alternate name for an executable file. This is especially useful when compiling and linking a set of input files. You can use the option to give the resulting file a name other than that of the first input file (source or object) on the command line.

IDE Equivalent
None
Alternate Options

Linux and macOS: -o

Windows: /Fe

Example

The following example creates a dynamic-link library file named file.dll (note that you can use /LD in place of /dll):

ifort /dll /exe:file.dll a.f

In the following example (which uses the alternate option /Fe), the command produces an executable file named outfile.exe as a result of compiling and linking three files: one object file and two Fortran source files.

prompt>ifort /Feoutfile.exe file1.obj file2.for file3.for

By default, this command produces an executable file named file1.exe.

See Also