PRB: Build Errors Using Precompiled Header in Debugging LibLast reviewed: September 11, 1997Article ID: Q102697 |
The information in this article applies to:
SYMPTOMSAn attempt to create a debugging library that uses precompiled headers may fail and fatal build errors may be generated. With the 16-bit edition, the CVPACK and LINK utilities may generate the following messages:
CVPACK : fatal error CK1017: cannot find precompiled types file; relink with file.obj LINK : warning LNK4027: CVPACK errorWith the 32-bit edition, the LINK utility may generate the following message:
LINK : fatal error LNK1211: precompiled type information not found; "<filename>" not linked or overwritten CAUSEWhen you specify the /Yc and /Z7 options on the compiler command line, Microsoft C/C++ generates a precompiled header file that contains CodeView debugging information. The error occurs only when you store the precompiled header in a library, use the library to build an object module, and the source code does not refer to any of the functions the precompiled header file defines.
RESOLUTIONThere are two methods to work around this situation, as follows:
MORE INFORMATIONWhen you compile a module with the /Yc and /Yl<symbol_name> option switches using the 32-bit edition, the compiler creates a symbol similar to __@@_PchSym_@00@...@<symbol_name>, where the ellipsis (...) represents a linker generated character string, and stores it in the object module. Any source file that you compile with this precompiled header refers to the specified symbol, which causes the linker to include the object module and its debugging information from the library. The following code example demonstrates the problem.
Sample Code
/* * To demonstrate this problem, perform the following five steps: * * 1. Compile TEST1.C as follows: cl /Yctest.h /Z7 /c TEST1.C * 2. Compile TEST2.C as follows: cl /Yutest.h /Z7 /c TEST2.C * 3. Build a library that contains TEST1.OBJ and TEST2.OBJ as * follows: lib /out:test.lib test1.obj test2.obj * 4. Compile TEST3.C as follows: cl /Yutest.h /Z7 /c TEST3.C * 5. Link the application as follows: * link /debugtype:cv /debug:notmapped,full test3.obj test.lib * * To correct this problem, do one of the following: * * 1. 32-bit only) Compile TEST1.C in step 1 as follows: * cl /Yctest.h /YlAnyName /Z7 /c TEST1.C * Then, repeat step 2 through 5. * * 2. Repeat steps 1 through 5, adding the /Yd command line option * to steps 1, 2, and 4. */ TEST.H
#include <stdio.h> TEST1.C
#include "test.h" TEST2.C
#include "test.h" void test2func(void) { printf("inside TEST2FUNC...\n"); } TEST3.C
#include "test.h" void test2func(void); void main(void) { printf("inside MAIN...\n"); } |
Additional query words: 8.00 8.00c 9.00 /YX hdrstop /Fp
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |