How do I merge multiple PDB files ? - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T23:14:06Zhttp://stackoverflow.com/feeds/question/528105http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/528105/how-do-i-merge-multiple-pdb-files2How do I merge multiple PDB files ?blue.tuxedo2009-02-09T13:20:59Z2009-03-25T13:01:51Z
<p>We are currently using a single command line tool to build our product on both Windows and Linux.</p>
<p>Si far its works nicely, allowing us to build out of source and with finer dependencies than what any of our previous build system allowed. This buys us great incremental and parallel build capabilities.</p>
<p>To describe shortly the build process, we get the usual:</p>
<pre><code>.cpp -- cl.exe --> .obj and .pdb
multiple .obj and .pdb -- cl.exe --> single .dll .lib .pdb
multiple .obj and .pdb -- cl.exe --> single .exe .pdb
</code></pre>
<p>The msvc C/C++ compiler supports it adequately.</p>
<p>Recently the need to build a few static libraries emerged.
From what we gathered, the process to build a static library is:</p>
<pre><code>multiple .cpp -- cl.exe --> multiple .obj and a single .pdb
multiple .obj -- lib.exe --> a single .lib
</code></pre>
<p>The single .pdb means that <code>cl.exe</code> should only be executed once for all the .cpp sources. This single execution means that we can't parallelize the build for this static library. This is really unfortunate.</p>
<p>We investigated a bit further and according to the documentation (and the available command line options):</p>
<ul>
<li><code>cl.exe</code> does not know how to build static libraries</li>
<li><code>lib.exe</code> does not know how to build .pdb files</li>
</ul>
<p>Does anybody know a way to merge multiple PDB files ? Are we doomed to have slow builds for static libraries ? How do tools like Incredibuild work around this issue ?</p>
http://stackoverflow.com/questions/528105/how-do-i-merge-multiple-pdb-files/661804#6618042Answer by Preet Sangha for How do I merge multiple PDB files ?Preet Sangha2009-03-19T11:08:55Z2009-03-19T11:08:55Z<p>I've not done C++ for a long time but from this <a href="http://msdn.microsoft.com/en-us/library/yd4f8bd1.aspx" rel="nofollow">article</a>, it appears that this is a performance trick to stop the recreation of symbols for common headers. </p>
<p>You could try /Z7 to embed info in each obj, and not create a PDB and then link and recreate it with a rebase as in this <a href="http://www.eggheadcafe.com/conversation.aspx?messageid=30655322&threadid=30629196" rel="nofollow">article</a>.</p>
http://stackoverflow.com/questions/528105/how-do-i-merge-multiple-pdb-files/681473#6814733Answer by janm for How do I merge multiple PDB files ?janm2009-03-25T13:01:51Z2009-03-25T13:01:51Z<p>No need to merge PDB files.</p>
<p>Compile source files with /Z7 to avoid creating a PDB during the CL.EXE steps.</p>
<p>Use LIB.EXE to create static libaries with embedded debugging information. Use LINK.EXE instead of CL.EXE to link, use /PDB to specify where the debugging information goes.</p>
<p>If you are debugging a process with an EXE and one or more DLLs, feed your debugger a PDB for each image (EXE or DLL).</p>