Tells the compiler to use a precompiled header file.
Windows: Precompiled Headers > Precompiled Header (VS 2010)
Language > Create/Use Precompiled Header (VS 2005/2008)
Linux: None
Mac OS X: None
filename |
Is the name of a C/C++ header file, which is included in the source file using an #include preprocessor directive. |
This option tells the compiler to use a precompiled header (PCH) file.
It is supported for multiple source files when all source files use the same .pchi file.
The compiler treats all code occurring before the header file as precompiled. It skips to just beyond the #include directive associated with the header file, uses the code contained in the PCH file, and then compiles all code after filename.
If you do not specify filename, the compiler will use a PCH with a name based on the source file name. If you specify option /Fp, it will use the PCH specified by that option.
When this option is specified, the compiler ignores all text, including declarations preceding the #include statement of the specified file.
This option cannot be used in the same compilation as the /Yc option.
Consider the following command line:
icl /c /Yuheader.h bar.cpp
In this case, the name of the PCH file used is "header.pchi".
In the following command line, no filename is specified:
icl /Yu bar.cpp
In this case, the name of the PCH file used is "bar.pchi".
In the following command line, no filename is specified, but option /Fp is specified:
icl /Yu /Fpprecomp bar.cpp
In this case, the name of the PCH file used is "precomp.pchi".
Copyright © 1996-2010, Intel Corporation. All rights reserved.