Debugging a release version of a DLL (with PDB file) - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T13:35:32Z http://stackoverflow.com/feeds/question/769995 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/769995/debugging-a-release-version-of-a-dll-with-pdb-file 2 Debugging a release version of a DLL (with PDB file) Martin 2009-04-20T20:40:45Z 2009-04-22T12:42:38Z <p>If I have a DLL (that was built in release-mode) and the corresponding PDB file, is it possible to debug (step-into) classes/methods contained in that DLL?</p> <p>If so, what are the required steps/configuration (e.g. where to put the PDB file)?</p> <p><strong>Edit:</strong></p> <p>If have the PDB file in the same place as the DLL (in the bin/debug directory of a simple console test application). I can see that the symbols for the DLL are loaded (in the Output window and also in the Modules window), but still I cannot step into the methods of that DLL.</p> <p>Could this be the result of compiler optimizations (as described by Michael in his answer)?</p> http://stackoverflow.com/questions/769995/debugging-a-release-version-of-a-dll-with-pdb-file/770018#770018 2 Answer by Marc Gravell for Debugging a release version of a DLL (with PDB file) Marc Gravell 2009-04-20T20:45:29Z 2009-04-20T20:45:29Z <p>The pdb is usually (for me at least) detected if it is next to the dll (like with the intellisense xml files). </p> <p>Alternatively; you'll need a break point after the module has loaded...</p> <p>At the break-point, bring up the "Modules" window (Ctrl+D,M - or Debug->Windows->Modules). Right click on your dll "Load symbols from", "Symbol path", etc. </p> http://stackoverflow.com/questions/769995/debugging-a-release-version-of-a-dll-with-pdb-file/770025#770025 1 Answer by Michael for Debugging a release version of a DLL (with PDB file) Michael 2009-04-20T20:46:06Z 2009-04-20T20:54:24Z <p>Yes, you can debug release code with a PDB. There are some pitfalls however with debugging optimized code, more info <a href="http://stackoverflow.com/questions/563000/can-optimizations-affect-the-ability-to-debug-a-vc-app-using-its-pdb/567886">here</a> and <a href="http://stackoverflow.com/questions/763920/ms-compiler-optimization-that-replaces-variables-in-a-function/763923">here</a>.</p> <p>Your PDB just needs to be in a place that the debugger can find it - for local debugging same directory as the dll is usually easiest. Otherwise, put it in some place that the debugger can find it, and point the debugger to that place with the symbol path.</p> http://stackoverflow.com/questions/769995/debugging-a-release-version-of-a-dll-with-pdb-file/770717#770717 0 Answer by Stephen Nutt for Debugging a release version of a DLL (with PDB file) Stephen Nutt 2009-04-21T01:28:58Z 2009-04-21T01:28:58Z <p>Debugging a release build is typically much harder that debugging a debug version. In general you'll need some understanding of x86 assembler and you'll likely spend some time looking at the disassembly window. This tends to be the only way to figure out what line of code you are really on since in a release build with optimizations on the compiler may do significant inlining and instruction reordering. In addition I find the debugger frequently fails to correctly report values of variables. If you need to know a variable's value and you are not sure the debugger is correct, go into the disassembly window and find the memory location or register it is located in.</p> <p>The pdb files can be stored in a Symbol Server. Check out <a href="http://entland.homelinux.com/blog/2006/07/06/setting-up-a-symbol-server/" rel="nofollow">Setting up a Symbol Server</a> for a good tutorial. Every product we build on a build machine publishes the symbols to our symbol server, so we can always debug any crash dumps we receive from WinQual.</p> http://stackoverflow.com/questions/769995/debugging-a-release-version-of-a-dll-with-pdb-file/777033#777033 0 Answer by Martin for Debugging a release version of a DLL (with PDB file) Martin 2009-04-22T12:42:38Z 2009-04-22T12:42:38Z <p>I finally found what cause the problems debugging a DLL that was built in release configuration:</p> <p>First of all, it basically works as expected. Which means, if I have a DLL built in release-configuration plus the corresponding PDB file, then I can debug the classes/methods contained in that DLL.</p> <p>When I first tried this, I unfortunately tried to step into methods of a class which has the <strong>DebuggerStepThroughAttribute</strong>, e.g:</p> <pre><code>[System.Diagnostics.DebuggerStepThrough] public class MyClass { public void Test() { ... } } </code></pre> <p>In that case, it is of course not possible to step into the method from the debugger (as expected/intended).</p> <p>So everything works as intended. Thanks a lot for your answers.</p>