PRB: Causes of Error CK1024

Last reviewed: August 26, 1997
Article ID: Q109269

The information in this article applies to:
  • Microsoft Link for MS-DOS, versions 5.5 and 5.6
  • Microsoft LINK for Windows NT, versions 1.0, 2.5, and 2.55

SYMPTOMS

The LINK or CVPACK utilities shipped with Visual C++ for Windows and Visual C++ 32-bit Edition may terminate and display this message:

   fatal error CK1024: 'modulename' cannot use program database
   'pdbfile' : signatures do not match

   -or-

   LINK : error LNK1202: "<path>\<filename>.pdb" is missing debugging
   information for referencing module

CAUSE

When source code is compiled using the /Zi option to generate debugging information, the C/C++ compiler creates a .PDB file. The utilities check to make sure that the .PDB file found is the one that was used when the object module(s) was compiled. The error occurs when this version-check fails.

Both LINK and CVPACK search for the .PDB file in the following locations in this order:

  1. The absolute path written in the .OBJ file by the C/C++ compiler

  2. The current directory that LINK or CVPACK is running from

  3. Any directories specified in the LIB environment variable

This error is more likely to occur when using the default .PDB name because of the increased probability that if the .PDB file specified in the object module is not found, the default PDB will be found in either location 2 or 3 above. If the .PDB file cannot be found, the error "CK1022 cannot open program database" is reported.

RESOLUTION

One way to avoid the problem is to specify a unique name for the .PDB file using the /Fd compiler option. This avoids possible confusion any default PDB files the utilities might locate on the search path.

It is also possible that the version of the .PDB file found is out-of-date with respect to the object modules. You can resolve this problem by following the suggestions from the error description in the Visual C++ documentation:

   The .OBJ file modulename uses the .PDB file pdbfile, but the internal
   signature in pdbfile does not match the internal signature in
   modulename. Delete modulename, recompile, and relink. If a makefile is
   used, check the makefile dependencies.

Another solution is to re-build using the /Z7 compiler option. This places all debugging information into the modules themselves. A .PDB file will not be referenced.

MORE INFORMATION

For more information on .PDB files, please see the Visual C++ documentation for the /Zi option of CL, and either /CO or /DEBUG for LINK.

If the CK1024 error occurs when linking to a library, please see the following article in the Microsoft Knowledge Base that explains this problem in further detail:

   ARTICLE-ID: Q109270
   TITLE     : PRB: CK1024 Error May Be Caused by Modules in Library
Keywords          : LINKIss kberrmsg
Version           : MS-DOS:5.5,5.6;WINDOWS NT:1.0,2.5,2.55
Issue type        : kbprb


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


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: August 26, 1997
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.