Installation guide

Intel® Parallel Studio XE 2015 Composer Edition for C++ Linux*
Installation Guide and Release Notes 19
-qoffload-attribute-target=<name>
-qoffload-option,<target>,<tool>,”option list”
o “jit” added as tool for offload to Intel® Graphics Technology
-f[no-]fat-lto-objects
-prof-gen=threadsafe
-qopt-report[=n]
-qopt-report-file=[stdout | stderr | <file>]
-qopt-report-per-object
-qopt-report-phase=<phase>[,<phase>,…]
-qopt-report-routine=<name>[,<name>,…]
-qopt-report-filter=<string>
-qopt-report-format=[text|vs]
-qopt-report-names=[mangled|unmangled]
-qopt-report-help
-q[no-]opt-report-embed
-[no-]check-pointers-narrowing
-no-gcc-include-dir
-std=gnu++11
-debug [no]emit-column
-debug [no]macros
-fast and Ofast now include fp-model fast=2
-f[no-]eliminate-unused-debug-types
-I-
For a list of deprecated compiler options, see the Compiler Options section of the
documentation.
3.3.2 Compiler options starting with o are deprecated
All compiler options starting with o are deprecated. These will be replaced by new options
preceded with q. For example, -opt-report should now be qopt-report. This is to improve
compatibility with third-party tools that expect o<text> to always refer to output filenames.
3.3.3 ansi-alias is enabled by default
To align more closely with gcc, -ansi-alias is enabled by default at O2 and above. This option
allows the compiler to assume the code follows ANSI aliasing rules when generating code. If
your code does not follow these rules, incorrect code may be generated. To disable this, use
no-ansi-alias.
3.3.4 Use -I- to control if search path is used for include files with angle brackets
Use of I- effectively splits the command line include paths specified. Any directories specified
with -I options before -I- are searched only for headers included with the "#include "file""
directive. They are not searched for headers included with angle brackets as in "#include
<file>". If additional directories are specified with -I options after the -I- in the command line,
those directories are searched for all #include directives. In addition, -I- inhibits the use of the