Visual C++ 2008 'Release' build contains debug information - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T21:18:41Zhttp://stackoverflow.com/feeds/question/218226http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/218226/visual-c-2008-release-build-contains-debug-information6Visual C++ 2008 'Release' build contains debug informationRob2008-10-20T12:20:13Z2008-10-26T14:13:17Z
<p>I've noticed that when generating a new C++ project using MS Visual Studio 2008, the <strong>Release</strong> build contains debugging symbols - specifically the following settings are enabled:</p>
<ul>
<li>The C++/General/Debug Information Format is set to <strong>Program Database</strong>.</li>
<li>The Linker/Debugging/Generate Debug Info setting is set to <strong>Yes</strong>.</li>
</ul>
<p>I have never noticed this on earlier releases of Visual Studio.</p>
<p>So, other than generating a larger EXE file, is there any downside to leaving these settings enabled?</p>
http://stackoverflow.com/questions/218226/visual-c-2008-release-build-contains-debug-information/218240#2182401Answer by Sam for Visual C++ 2008 'Release' build contains debug informationSam2008-10-20T12:26:12Z2008-10-20T12:26:12Z<p>Well, you might deliver this debug information and someone might use it to disassemble your code. For some fearful people this alone might be a reason not to leave it this way.</p>
<p>Personally, I think sometimes it's helpful to have debug information available for the release version - this way it is far easier to analyse a crashdump, that will be stored by Dr. Watson in case of application crashes.<br />
I did find some really obscure bugs this way.</p>
http://stackoverflow.com/questions/218226/visual-c-2008-release-build-contains-debug-information/218247#2182472Answer by Dave Van den Eynde for Visual C++ 2008 'Release' build contains debug informationDave Van den Eynde2008-10-20T12:28:23Z2008-10-20T12:28:23Z<p>Having these options on do not necessarily make your executables bigger. Debug information is stored in a separate file, with the extension PDB. Having debug information available is never a bad idea, unless you're really really short on free storage space.</p>
<p>Perhaps that's why they're on by default: they don't harm your executables. Release builds do use optimizations such as function inlining and generating optimized code, which makes it harder to step through, while Debug builds have these options turned off.</p>
<p>No downside here.</p>
<p>Dave</p>
http://stackoverflow.com/questions/218226/visual-c-2008-release-build-contains-debug-information/218250#21825017Answer by Karim for Visual C++ 2008 'Release' build contains debug informationKarim2008-10-20T12:29:03Z2008-10-20T12:29:03Z<p>We have turned on those settings in our commercial releases for years now with no apparent downside. The upsides are enormous,though. </p>
<p>We have integrated a crash dump packager that packages the dump along with some other information and emails it (with the user's consent) to a company inbox. This has helped us find problems that would have taken us <em>forever</em> to reproduce and find otherwise.</p>
<p>Although it's slightly off topic, here's a link to an excellent contribution someone made that gives you an easy way to include a crash reporter to a C++/Windows app:
<a href="http://www.codeproject.com/KB/debug/crash_report.aspx" rel="nofollow">http://www.codeproject.com/KB/debug/crash_report.aspx</a></p>
<p>Note: It would be wise, though, not to include the PDB file with your release. That said, you must keep the PDB file that matches your released version so that you can correctly debug the problem in the future. If a PDB file is used that wasn't built with the same code that built the exe, the stack you see when you try to debug the dmp will be wrong.</p>
http://stackoverflow.com/questions/218226/visual-c-2008-release-build-contains-debug-information/222642#2226420Answer by MSN for Visual C++ 2008 'Release' build contains debug informationMSN2008-10-21T16:59:17Z2008-10-21T16:59:17Z<p>The .exe will be slightly larger due to a reference to the .pdb file (i.e., an extra path). That's about it.</p>
<p>MSN</p>
http://stackoverflow.com/questions/218226/visual-c-2008-release-build-contains-debug-information/237314#2373141Answer by james for Visual C++ 2008 'Release' build contains debug informationjames2008-10-26T01:12:52Z2008-10-26T01:12:52Z<p>Add the /Zi switch does make a larger .exe file in addition to the PDB. However you can seperately link with /OPT:REF to keep the .exe file size to a minimum.</p>
http://stackoverflow.com/questions/218226/visual-c-2008-release-build-contains-debug-information/238053#2380531Answer by Jay Bazuzi for Visual C++ 2008 'Release' build contains debug informationJay Bazuzi2008-10-26T14:13:17Z2008-10-26T14:13:17Z<p>They're turned on by default because:</p>
<ol>
<li>If you don't create them now, you can't create them later.</li>
<li>You need them.</li>
</ol>
<p>Enabling debug info in Visual C++ causes a small entry to be added to the binary header, identifying the PDB for this binary. It's too small to be of any size concern, and doesn't contain any useful secrets that you might be concerned about sharing.</p>
<p>(The header entry is labeled RSDS: who can guess why?)</p>
<p>Of course, those PDBs will use more disk space on your build machine / in your backups. Deal with it. You need those PDBs when it comes time to debug something.</p>