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

gcc-name

Lets you specify the name of the GCC compiler that should be used to set up the link-time environment, including the location of standard libraries.

Syntax

Linux:

-gcc-name=name

macOS:

None

Windows:

None

Arguments

name

Is the name of the GCC compiler to use. It can include the path where the GCC compiler is located.

Default

OFF

The compiler uses the PATH setting to find the GCC compiler and resolve environment settings.

Description

This option lets you specify the name of the GCC compiler that should be used to set up the link-time environment, including the location of standard libraries. If you do not specify a path, the compiler will search the PATH settings for the compiler name you provide.

This option is helpful when you are referencing a non-standard GCC installation, or you have multiple GCC installations on your system. The compiler will match GCC version values to the GCC compiler you specify.

The C++ equivalent to option -gcc-name is -gxx-name.

IDE Equivalent
None
Alternate Options

None

Example

If the following option is specified, the compiler looks for the GCC compiler named foobar in the PATH setting:

-gcc-name=foobar

If the following option is specified, the compiler looks for the GCC compiler named foobar in the path specified:

-gcc-name=/a/b/foobar

See Also