A rather simple question really, but why on earth does Visual Studio 2005 generate the .pdb files when compiling in release? I won't be debugging a release build, so why are they generated?
|
|
Because without the PDB files, it would be impossible to debug a release build by anything other than address-level debugging. Optimizations really do a number on your code, making it very difficult to find the culprit if something goes wrong (say, an exception is thrown). PDB files help you out with that. You make the point that if your software is ready for release, you should have done all your debugging by then. While that's certainly true, there are a couple of important points to keep in mind:
You can't generate the PDB files after the compile. If you don't create them when you compile the app, you've lost your opportunity. It doesn't hurt anything to create them. If you don't want to distribute them, you can simply omit them from your binaries. But if you later decide you want them, you're out of luck. Better to generate them and keep a copy on your machine, just in case. If you really want to turn them off, that's always an option. Check in your project's Properties window. Set the "Debug Info" to "none" for any configuration you want to change. Do note, however, that the "Debug" and "Release" configurations do by default use different settings for emitting debug information. The "Debug Info" option is set to "full" for a Debug build, which means that in addition to a PDB file, debugging symbol information is embedded into the assembly. In Release mode, the "pdb-only" option is selected, which, like it sounds, includes only the PDB file, without affecting the content of the assembly. It's not quite as simple as the mere presence or absence of PDB files in your |
|||||||||||||
|
|
PDB can be generated for release as well as debug. This is set at (In VS 2010 but 2005 must be similar):
Just change it to None. |
|||||||||||||||
|
|
Without the .pdb files it is virtually imposible to step through the production code; you have to rely on other tools which can be costly and time consuming. I understand you can use tracing or windbg for instance but it really depends on what you want to achieve. In certain scenarios you just want to step through the remote code (no errors or exceptions) using the production data to observe particular behaviour, and this is where .pdb files come handy. Without them running the debugger on that code is impossible. |
|||
|
|
|
Why are you so sure you will not debug release builds? Sometimes (hopefully rarely but happens) you may get a defect report from a customer that is not reproducible in the debug version for some reason (different timings, small different behaviour or whatever). If that issue appears to be reproducible in the release build you'll be happy to have the matching pdb. |
|||||||
|

