Intel® C++ Compiler XE 13.1 User and Reference Guides

strict-ansi

Tells the compiler to implement strict ANSI conformance dialect.

IDE Equivalent

Windows: None

Linux: Language > ANSI Conformance

OS X: Language > C ANSI Conformance

Architectures

All

Syntax

Linux and OS X:

-strict-ansi

Windows:

None

Arguments

None

Default

OFF

The compiler conforms to default standards.

Description

This option tells the compiler to implement strict ANSI conformance dialect. If you need to be compatible with gcc, use the -ansi option.

This option sets option fmath-errno, which tells the compiler to assume that the program tests errno after calls to math library functions. This restricts optimization because it causes the compiler to treat most math functions as having side effects.

Alternate Options

None


Submit feedback on this help topic