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

ID 767251
Date 3/22/2024
Public
Document Table of Contents

ipo-S, Qipo-S

Tells the compiler to optimize across multiple files and generate a single assembly file. This feature is only available for ifort.

Syntax

Linux:

-ipo-S

Windows:

/Qipo-S

Arguments

None

Default

OFF

The compiler does not generate a multifile assembly file.

Description

This option tells the compiler to optimize across multiple files and generate a single assembly file (named ipo_out.s on Linux* systems; ipo_out.asm on Windows* systems).

It performs the same optimizations as the [Q]ipo option, but compilation stops before the final link stage, leaving an optimized assembly file that can be used in further link steps.

CAUTION:

Files compiled with option -ipo-S or /Qipo-S should also be linked with the same option, or the link step may fail.

IDE Equivalent

None

Alternate Options

None

See Also