Best Ways to Debug a Release Mode Application - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T04:25:00Zhttp://stackoverflow.com/feeds/question/33386http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/33386/best-ways-to-debug-a-release-mode-application3Best Ways to Debug a Release Mode ApplicationJames Hall2008-08-28T21:00:24Z2009-05-26T15:19:59Z
<p>Im sure this has happened to folks before, something works in debug mode, you compile in release, and something breaks.</p>
<p>This happened to me while working on a Embedded XP environment, the best way i found to do it really was to write a log file to determine where it would go wrong.</p>
<p>What are your experiences/ discoveries trying to tackle an annoying Release-mode bug?</p>
http://stackoverflow.com/questions/33386/best-ways-to-debug-a-release-mode-application/33393#333930Answer by pauldoo for Best Ways to Debug a Release Mode Applicationpauldoo2008-08-28T21:03:30Z2008-08-28T21:03:30Z<p>If it's only a small portion of the application that needs debugging then you can change those source files only to be built without optimisations. Presumably you generate debug info for all builds, and so this makes the application run mostly as it would in release, but allows you to debug the interesting parts properly.</p>
http://stackoverflow.com/questions/33386/best-ways-to-debug-a-release-mode-application/33394#333940Answer by Vin for Best Ways to Debug a Release Mode ApplicationVin2008-08-28T21:03:41Z2008-08-28T21:03:41Z<p>How about using Trace statements. They are there for Release mode value checking.</p>
<pre><code>Trace.WriteLine(myVar);
</code></pre>
http://stackoverflow.com/questions/33386/best-ways-to-debug-a-release-mode-application/33398#333982Answer by 1800 INFORMATION for Best Ways to Debug a Release Mode Application1800 INFORMATION2008-08-28T21:05:47Z2008-08-28T23:59:04Z<p>Make sure you have good debug symbols available (you can do this even with a release build, even on embedded devices). You should be able to get a stack trace and hopefully the values of some variables. A good knowledge of assembly language is probably also useful at this point.</p>
<p>My experience is that generally the bug is related to code that is near the area of breakage. That is to say, if you are seeing an issue arising in the function "LoadConfigInfoFromFile" then probably you should start by closely analysing that for issues, rather than "DrawControlsOnScreen", if you know what I mean. "Spooky action at a distance" type bugs do not tend to arise often (although when they do, they tend to be a major bear).</p>
http://stackoverflow.com/questions/33386/best-ways-to-debug-a-release-mode-application/33401#334010Answer by Ed Haber for Best Ways to Debug a Release Mode ApplicationEd Haber2008-08-28T21:06:29Z2008-08-28T21:06:29Z<p>I agree on log file debugging to narrow it down.</p>
<p>I've used "Entering FunctionName" "Leaving FunctionName" until I can find what method it enters before the crash. Then I add more log messages re-compile and re-release.</p>
http://stackoverflow.com/questions/33386/best-ways-to-debug-a-release-mode-application/33408#334080Answer by crashmstr for Best Ways to Debug a Release Mode Applicationcrashmstr2008-08-28T21:08:53Z2008-08-28T21:08:53Z<p>Besides playing with turning off optimization and/or turning on debug information for your Release build as <a href="http://beta.stackoverflow.com/users/755/pauldoo" rel="nofollow">pauldoo</a> said, a log file will good data can really help. I once wrote a "trace" app that would capture trace logs for the app if it was running when the release build started (otherwise the results would go to the debugger's output window if running under the debugger). I was able to have end-users email me log files from them reproducing the bugs they were seeing, and it was the only way I would have found the problem in at least one case.</p>
http://stackoverflow.com/questions/33386/best-ways-to-debug-a-release-mode-application/33417#334170Answer by Maximilian for Best Ways to Debug a Release Mode ApplicationMaximilian2008-08-28T21:11:34Z2008-08-28T21:11:34Z<p>If can't find the bug without debugging I use a to script modify the source code I think the problem stems from, so that it prints out every line that's executed and optionally variables.</p>
<p>Analyzing these logs is hell, but if you don't have a chance to debug it's better than nothing.</p>
http://stackoverflow.com/questions/33386/best-ways-to-debug-a-release-mode-application/33694#336940Answer by ElectricDialect for Best Ways to Debug a Release Mode ApplicationElectricDialect2008-08-29T00:17:35Z2008-08-29T00:17:35Z<p>Though it's probably not usable in an embedded environment, I've had good luck with <a href="http://en.wikipedia.org/wiki/WinDbg" rel="nofollow">WinDbg</a> for debugging release-mode Windows applications. Even if the application is not compiled with symbol information, you can at least get a usable stack trace and plenty of other useful crash information.</p>
http://stackoverflow.com/questions/33386/best-ways-to-debug-a-release-mode-application/33709#337090Answer by Juan Manuel for Best Ways to Debug a Release Mode ApplicationJuan Manuel2008-08-29T00:38:22Z2008-08-29T00:38:22Z<p>You could also copy your debug symbols to the production environment even if it's compiled in relase mode</p>
<p><a href="http://www.juanformoso.com.ar/post/2008/03/06/e28098PDBs-are-evile28099-myth.aspx" rel="nofollow">Here</a>'s an article with more information</p>
http://stackoverflow.com/questions/33386/best-ways-to-debug-a-release-mode-application/70451#704510Answer by Ilya for Best Ways to Debug a Release Mode ApplicationIlya 2008-09-16T08:47:42Z2008-09-16T08:47:42Z<p>If you problem is synchronization related dumping log in the file might be problematic.<br />
In this case i usually will use some big array of string and dump this to screen/file after the problem was reproduces.<br />
This is of course depend on your memory restriction, sometime i use just few symbols and numbers to store in the array if the memory on the platform is limited. Reading such logs is not a big pleasure, but sometimes this is the only choice.</p>
http://stackoverflow.com/questions/33386/best-ways-to-debug-a-release-mode-application/911259#9112591Answer by primeMover for Best Ways to Debug a Release Mode ApplicationprimeMover2009-05-26T15:19:59Z2009-05-26T15:19:59Z<p>Tracefile is always a good idea.
When it's about crashes, I'm using adplus, which is part of debugging tools for windows. basically what adplus does, is, it attaches windbg to the executable you're monitoring. When the application crashes, you get a crash dump and a log file. You can load the crash dump in your preferred debugger and find out, which instruction lead to the crash.</p>
<p>As release builds are heavily optimized compared to debug builds, the way you compile your code affects its behaviour. This is basically true when crashes in multithreaded code happen in the release version but not the debug version. adplus and windbg helped me, to find out, where this happened.</p>
<p>ADPlus is explained here:
httx://support.microsoft.com/?scid=kb%3Ben-us%3B286350&x=15&y=12</p>
<p>Basically what you have to do is:
1. Download and install WinDbg into C:\debuggers
httx://www.microsoft.com/whdc/devtools/debugging/default.mspx</p>
<ol>
<li><p>Start your application</p></li>
<li><p>open a cmd and cd to c:\debuggers</p></li>
<li><p>start adplus like this: </p></li>
</ol>
<p>"adplus.bat -crash your_exe.exe"</p>
<ol>
<li><p>reproduce the crash</p></li>
<li><p>analyze the crashdump in vs2005 or in windbg</p></li>
</ol>