DOCUMENT:Q146866 11-JUN-2002 [visualc] TITLE :PRB: Type Indexes in .PDB Files Are Limited PRODUCT :Microsoft C Compiler PROD/VER::4.0,4.1,4.2,5.0,6.0 OPER/SYS: KEYWORDS:kbusage kbVC400 kbVC410 kbVC420 kbVC500 kbVC600 ====================================================================== ------------------------------------------------------------------------------- The information in this article applies to: - Microsoft Visual C++, versions 4.0, 4.1 - Microsoft Visual C++, 32-bit Enterprise Edition, versions 4.2, 5.0, 6.0 - Microsoft Visual C++, 32-bit Professional Edition, versions 4.2, 5.0, 6.0 - Microsoft Visual C++, 32-bit Learning Edition, version 6.0 - Microsoft Visual C++.NET (2002) ------------------------------------------------------------------------------- SYMPTOMS ======== When linking a debug version of your application, you may get the following warning message: LINK : warning LNK4018: too many type indexes in PDB "filename", discarding subsequent type information NOTE: You will not be able to see the subsequent types in the debugger. CAUSE ===== The number of type indexes in the Program Database File (.pdb file) for your project exceeded 64K for Visual C++ 4.x and 16M for later versions. This is a limitation of the debugging format in a .pdb file. The format uses a 16-bit field to store the number of types. This field was increased to 24 bits in Visual C++ 5.0. RESOLUTION ========== To avoid this warning, use one or more of the following methods to decrease the number of type indexes in your .pdb file: - Compile modules that you do not need to debug, without debugging information. - Break your project into multiple Dynamic Link Libraries (DLLs). You can use subprojects in Developer Studio to build the new libraries. - Use the compile time option /Yd. It will cause the type information for only those symbols that are referenced to be generated. This slows down builds somewhat but may lower the total number of symbols below the 64K limit. STATUS ====== This behavior is by design. MORE INFORMATION ================ You can review each object module to determine how many symbols it contains by using dumpbin /headers .obj. The first section in the output tells how many symbols the object module contains. With the introduction of Visual C++ 4.0, the size of the MFC libraries increased significantly and debugging information for the C run-time (CRT) libraries is now included in debug builds. These changes will increase the total number of type indexes in your project's .pdb file from earlier versions of Visual C++. Additional query words: symbol missing cannot debug ====================================================================== Keywords : kbusage kbVC400 kbVC410 kbVC420 kbVC500 kbVC600 Technology : kbVCsearch kbVC400 kbAudDeveloper kbVC410 kbVC420 kbVC500 kbVC600 kbVC32bitSearch kbVCNET kbVC500Search Version : :4.0,4.1,4.2,5.0,6.0 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. Copyright Microsoft Corporation 2002.