Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
15answers
2k views

Common reasons for bugs in release version not present in debug mode

What are the typical reasons for bugs and abnormal program behavior that manifest themselves only in release compilation mode but which do not occur when in debug mode?
3
votes
3answers
139 views

c++ compile error in debug but not in release

I'm trying to compile a small COM dll (using visual studio 2008 pro), and it compiles fine in release, but when I try to compile it in debug I get a compilation error: error C2664: 'bool (MyClass ...
2
votes
3answers
465 views

Release mode static library much larger than debug mode version

today i found out that the compiled static library i'm working on is much larger in Release mode than in Debug. I found it very surprising, since most of the time the exact opposite happens (as far as ...
1
vote
1answer
61 views

ELMAH YSOD in production

I've recently implemented ELMAH in one of our production apps. It's really been a rather easy implementation and it's working flawlessly. However, I'm noticing the YSOD in prod isn't as telling as it ...
1
vote
2answers
101 views

Android / Eclispe: how to run my app on device or emulator in release mode ? (if any…)

I am currently finishing the development of my Android app. I tested it extensively on both my Android phone and the emulator using my debug MD5 key and debugkeystore. I generated a release MD5 key ...
1
vote
1answer
62 views

StackoverflowException only in release-mode?

I installed VS2010 on Windows server 2008 R2 and started a Winforms app that makes an asynchronous WCF call for a rather big object graph (~25 Mb in XML) to services deployed on another machine. When ...
1
vote
1answer
803 views

Why “Optimize Code” is needed to be turned on for my program to run without crashing?

I was given this WPF application, when I tried to run the program in Debug mode it would crash before getting to Windows1.xml. I later tried running in Release Mode and it would run successfully. I ...
1
vote
1answer
210 views

Visual Studio freezes when switching to debug mode

Strange visual studio (TS 2008) problem: The IDE completely freezes whenever I switch from Release to Debug mode in a specific project. It happens right as I switch, before I try to build or do ...
0
votes
1answer
38 views

How to set debug mode only in QtCreator?

When Qt builds my project, it tries to do it both in the debug and release modes. However, I'm using an external library which I only have in debug mode. I'd like then to prevent QtCreator from ...
0
votes
2answers
194 views

Debug mode on iOS

been researching this a while and not sure entirely what to do. I want to allow users to switch debug mode either on or off. With debug mode on NSLogs will be printed to console. currently I can set ...
0
votes
0answers
122 views

how do i add a non-object layer from TileMap to a box2d iphone app

I typically don't ask questions, as most of mine are usually solvable after perusing google and various forums, but I've been trying to figure this one out for several hours and it is just killing me. ...
0
votes
2answers
75 views

Checking if Debugger is present in c++ dll (loaded in C++/CLI wrapper)

I'm checking if a debugger is present in my c++ dll with method if(IsDebuggerPresent()) // set dll name to debug When I load this dll in my C++/CLI wrapper (debug mode in VS) the method always ...
0
votes
2answers
754 views

VS2010 Debug build works, but Release does not

I have an app that I've recently added two C# classes to. It always built in both debug and release. The differences between the two configs are nothing. Now when I build the release, it says that one ...
0
votes
1answer
431 views

Why would Silverlight be crashing in Release but not in Debug mode?

I have a Silverlight App that has worked well in Debug and Release modes for weeks. It still works well in Debug mode. However, now when I run it in Release mode, it starts, shows me the screen, ...
0
votes
2answers
187 views

Weird behavior of std::vector

I have a class like this: class OBJ{...}; class A { public: vector<OBJ> v; A(int SZ){v.clear(); v.reserve(SZ);} }; A *a = new A(123); OBJ something; a->v.push_back(something); ...
0
votes
3answers
1k views

My code works in Debug mode, but not in Release mode

I have a code in Visual Studio 2008 in C++ that works with files just by fopen and fclose. Everything works perfect in Debug mode. and I have tested with several datasets. But it doesn't work in ...
0
votes
1answer
173 views

OnCtrlColor Not Working?

I used the following overloaded method to change the text color to red in a listbox, in a Visual C++ MFC dialog based application. When I build the program in DEBUG mode, it works perfectly. But when ...