When release dlls don't work but debug dlls do - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T17:49:36Z http://stackoverflow.com/feeds/question/368384 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/368384/when-release-dlls-dont-work-but-debug-dlls-do 4 When release dlls don't work but debug dlls do Torbjørn 2008-12-15T13:40:08Z 2009-07-15T15:14:27Z <p>After deploying our huge distributed system to one of our clients we experience an unexpected error. During the investigation we replace the assembly causing the error with one where we have added some diagnostic code. The dll we use is built in debug mode. And suddenly it all works!</p> <p>Replacing the debug dll with the release version (with the diagnostic code) makes it crash again. </p> <p>There are no precompiler directives, conditional debug attributes etc. in our code. The problem has been found in two different installation sites, while it works fine in several more.</p> <p>(The project has a mix of C# and VB.NET, the troublesom assembly is VB.NET.., if that makes any difference)</p> <p>So the question is: <strong><em>What do you do in situations like this? And what can be the cause - in general?</em></strong> Any advice on debugging this issue is welcome.</p> http://stackoverflow.com/questions/368384/when-release-dlls-dont-work-but-debug-dlls-do/368408#368408 7 Answer by Marc Gravell for When release dlls don't work but debug dlls do Marc Gravell 2008-12-15T13:48:52Z 2008-12-15T13:48:52Z <p>For causes... well, some hint of the symptom would help. One possibility is that you have code to a method like <code>Debug.WriteLine</code> that has side effects (i.e. makes it work). Calls to methods marked with <code>[Conditional(...)]</code> are not compiled unless you have the right symbols defined - so anything marked <code>[Conditional("DEBUG")]</code> will be silently dropped.</p> <p>It could also be a compiler bug, but that is a bit unlikely (but not impossible).</p> <p>What is the symptom? How does it break?</p> <p>As an example of the above:</p> <pre><code> static string Bar { get; set; } static void Main() { Bar = "I'm broken"; Debug.WriteLine(Foo()); Console.WriteLine(Bar); } // note Foo only called in DEBUG builds static string Foo() { Bar = "I'm working"; return "mwahahah"; } </code></pre> <p>Compiled in DEBUG mode it prints "I'm working"; compiled in RELEASE mode it prints "I'm broken". Does this sound similar? Check you aren't calling any debug methods <em>directly</em> with things that have side-effects. In most cases, you can fix by indirection:</p> <pre><code>string foo = Foo(); Debug.WriteLine(foo); </code></pre> <p>Now it gets called in either mode.</p> http://stackoverflow.com/questions/368384/when-release-dlls-dont-work-but-debug-dlls-do/368411#368411 2 Answer by Paul Nearney for When release dlls don't work but debug dlls do Paul Nearney 2008-12-15T13:49:49Z 2008-12-15T13:49:49Z <p>There are some good pointers <a href="http://stackoverflow.com/questions/33386/best-ways-to-debug-a-release-mode-application">here</a></p> http://stackoverflow.com/questions/368384/when-release-dlls-dont-work-but-debug-dlls-do/368417#368417 2 Answer by Josh for When release dlls don't work but debug dlls do Josh 2008-12-15T13:53:16Z 2008-12-15T13:53:16Z <p>You can try and turn off Optimize Code in the Build Settings. What is the actual error you are getting. </p> <p>Another thing you can do is compile in release mode but enable the #Debug conditional. This will handle the case if your using Diagnostics.Debug and the code in there effects your application.</p> http://stackoverflow.com/questions/368384/when-release-dlls-dont-work-but-debug-dlls-do/368429#368429 3 Answer by edg for When release dlls don't work but debug dlls do edg 2008-12-15T13:58:35Z 2008-12-15T13:58:35Z <pre><code>Debug.Assert(ImportantMethod() == true); </code></pre> http://stackoverflow.com/questions/368384/when-release-dlls-dont-work-but-debug-dlls-do/368488#368488 2 Answer by Morten Christiansen for When release dlls don't work but debug dlls do Morten Christiansen 2008-12-15T14:16:16Z 2008-12-15T14:16:16Z <p>It might be some sort of race condition you have, if you're not working in single-threaded code. For example, if some part of your program needs to perform some actions before other parts can access it, it might fail in release mode simply because the code is accessed too early. We once had a similar problem with some code for mobile phones which ran fine in the emulator but on the phone which was slower, the sitution was not the same at all.</p> http://stackoverflow.com/questions/368384/when-release-dlls-dont-work-but-debug-dlls-do/368507#368507 2 Answer by Brian Schmitt for When release dlls don't work but debug dlls do Brian Schmitt 2008-12-15T14:21:27Z 2008-12-15T14:21:27Z <p>Have you tried including the debug files? (the pdbs)</p> <p>If you co go your project settings and then the compile 'tab' select your release build in the dropdown near the top, then choose advanced compile options near the bottom, make sure to set it to create FULL debug information, then redeploy, you should now get more detailed information about the reason for the crash.</p> http://stackoverflow.com/questions/368384/when-release-dlls-dont-work-but-debug-dlls-do/368599#368599 2 Answer by faulty for When release dlls don't work but debug dlls do faulty 2008-12-15T14:53:47Z 2008-12-15T14:53:47Z <p>I've seen timing which cause issues between Debug and Release build. Generally Debug build runs slower than Release build. You might want to check time critical section of your code.</p> http://stackoverflow.com/questions/368384/when-release-dlls-dont-work-but-debug-dlls-do/1124559#1124559 0 Answer by Cokes for When release dlls don't work but debug dlls do Cokes 2009-07-14T10:27:37Z 2009-07-14T10:27:37Z <p>You probably know this, but, variables are sometimes initialised differently in debug and release builds. E.g. I think variables are auto-init'd in VC6 debug builds, this can hide problems if you didn't initialise something. I also think debug arrays may use sentry bytes in an attempt to indicate overruns. This too can lead to different behaviour.</p> http://stackoverflow.com/questions/368384/when-release-dlls-dont-work-but-debug-dlls-do/1129025#1129025 0 Answer by Henry for When release dlls don't work but debug dlls do Henry 2009-07-15T01:59:35Z 2009-07-15T01:59:35Z <p>I have a similar problem. My situation like this: I defined some reflection functions in a class library A. Then I defined a WPF user control library B, which uses the functions from library A. Then I coded an application which uses the user control from library B and functions in library A. When I used the debug version of library B, it works fine. But when I used the release version of library B, the reflection functions did not work. I also defined other functions in library A. It seems that only reflection functions are causing trouble. I can not figure out the reason. Finally, I gave up and moved the reflection functions from library A to library B. And it worked.</p> http://stackoverflow.com/questions/368384/when-release-dlls-dont-work-but-debug-dlls-do/1132045#1132045 0 Answer by twon33 for When release dlls don't work but debug dlls do twon33 2009-07-15T15:14:27Z 2009-07-15T15:14:27Z <p>I had a problem at one point with finalizers going off sooner than expected, because I didn't fully understand the interplay between finalizers, the garbage collector, and when a local object is considered collectible (hint: it's not at the closing curly brace of the block). If your code uses finalizers, you may wish to look into GC.KeepAlive(). In the following block:</p> <pre><code>void MyFunction() { Foo f = new Foo(); SomeFunction(f.SomeProp); } </code></pre> <p><code>f</code> becomes eligible for finalization before <code>SomeFunction()</code> even runs! If the finalizer does something like dispose whatever <code>SomeProp</code> hands out, you could get into trouble. Adding a call to <code>GC.KeepAlive(f)</code> after the call to <code>SomeFunction</code> ensures that <code>f</code> isn't eligible for finalization until after the call to <code>KeepAlive()</code>.</p> <p>Edit: After all that, I forgot to point out that this problem was much more pronounced when running in Release mode. I don't know if the Debug build puts implicit KeepAlives for locals at the end of the function for the debugger's benefit, or if the garbage collection is simply less aggressive, or what, but Release mode exacerbated this problem greatly in my case.</p>