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

diag-dump, Qdiag-dump

Tells the compiler to print all enabled diagnostic messages.

Syntax

Linux:

-diag-dump

macOS:

-diag-dump

Windows:

/Qdiag-dump

Arguments

None

Default

OFF

The compiler issues certain diagnostic messages by default.

Description

This option tells the compiler to print all enabled diagnostic messages. The diagnostic messages are output to stdout.

This option prints the enabled diagnostics from all possible diagnostics that the compiler can issue, including any default diagnostics.

If diag-list is specified for the [Q]diag-enable option, the print out will include the diag-list diagnostics.

IDE Equivalent
None
Alternate Options

None

Example

The following example adds vectorizer diagnostic messages to the printout of default diagnostics:

-diag-enable vec -diag-dump         ! Linux and macOS systems
/Qdiag-enable:vec /Qdiag-dump       ! Windows systems

See Also