BUG: /YX and /Yc Incorrectly Allowed in Project Settings

Last reviewed: July 31, 1997
Article ID: Q122304
The information in this article applies to:
  • Microsoft Visual C++, 32-bit Edition, version 2.0, 2.1, 4.0, 4.1, 4.2, 5.0

SYMPTOMS

Combining compiler switches /Yc and /Yu with the /YX option causes the following error:

   fatal error C1852: <PCH_file_name> is not a valid precompiled
      header file
   Error executing cl.exe.

CAUSE

In the example given in the More Information section, the /YX switch forces a new PCH file to be generated for the newly added source file. The project files that use the /Yu switch are dependent on the file built using the /Yc compiler switch. They will be recompiled because the precompiled header is newer than their OBJ files. The error is generated because the requirements for the PCH files are not met.

STATUS

Microsoft has confirmed this to be a bug in the products listed at the beginning of this article. We are researching this problem and will post new information here in the Microsoft Knowledge Base as it becomes available.

MORE INFORMATION

Steps to Reproduce Problem

This problem can be demonstrated using the SCRIBBLE, step 7, project; it uses the /Yc and /Yu switches.

  1. Add a new C++ (.cpp) souce file to the project.

  2. In the Project Settings dialog box for the new file, select the C/C++ tab and the Precompiled Headers category.

  3. Click the Automatic Use of Precompiled Headers box.

  4. Choose the OK button at the bottom of the Project Settings dialog box.

When the build engine processes the newly added source file, it will rebuild the default PCH file. Compilation of the next source file that depends on the default PCH file will fail because the default PCH file no longer matches up to the original sources. The C1852 error listed in the SYMPTOMS section above will be generated.

Note that if the source file added to the SCRIBBLE project is a C source file, not a C++ source, the error build error generated will be as follows:

   fatal error C1853: <PCH_file_name> is not a precompiled header file
      created with this compiler
   Error executing cl.exe.
Keywords          : vcbuglist400 vcbuglist500 VwbIss
Version           : 2.0 2.1 4.0 4.1 4.2 5.0
Platform          : NT WINDOWS
Issue type        : kbbug


================================================================================


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: July 31, 1997
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.