Visible to Intel only — GUID: GUID-0F85D7F1-235B-4C26-84F3-A6F14A39D835
Visible to Intel only — GUID: GUID-0F85D7F1-235B-4C26-84F3-A6F14A39D835
EP
Causes the preprocessor to send output to stdout, omitting #line directives.
Linux: |
-EP |
Windows: |
/EP |
None
OFF |
Preprocessed source files are output to the compiler. |
This option causes the preprocessor to send output to stdout, omitting #line directives.
If you also specify option P or Linux* option F, the preprocessor will write the results (without #line directives) to a file instead of stdout.
Visual Studio: Preprocessor > Preprocess Suppress Line Numbers
Eclipse: None
None
Example
To preprocess to stdout omitting #line directives, enter the following command:
Linux
icpx -EP prog1.cpp prog2.cpp
Windows
icx /EP prog1.cpp prog2.cpp