Tagged Questions

3
votes
7answers
718 views

Visual C++ - Why bother with Debug Mode?

So I have just followed the advice in enabling debug symbols for Release mode and after enabling debug symbols, disabling optimization and finding that break-points do work if symbols are complied ...
2
votes
2answers
90 views

Disadvantages to release Flash application which was compiled in debug mode

I want to release my flash application not in release mode but in debug mode to see result of trace() after releasing the app. I don't care that debug mode makes processing speed little slow. Except ...
2
votes
1answer
32 views

publishing debug versions of asp.net dlls

I'm a little confused about using release vs. debug versions of a dll for a live site. We have code written so that when the site experiences an uncaught exception it runs through the exception and ...
2
votes
10answers
269 views

How to comment lines automatically in release mode?

I need to have some lines of code "active" in debug mode only, and ignored in release mode. Is there a way to do something like this: #include <iostream> using namespace std; #ifdef _TEST_ ...
1
vote
2answers
168 views

Visual Studio 2008 Breakpoint will not be hit

I have a bug that only occurs in release mode, which is a problem because I am not able to regularly debug my code. The breakpoint says "The breakpoint will not currently be hit. No symbols have been ...
1
vote
1answer
145 views

QGraphicsScene::clear() method crashes on release mode!

I inherited my scene from QGraphicsScene. I add many items(QGraphicslineItem, QGraphicsItem, QGraphicsTextItem) on this scene. Whenever i try QGraphicsSceneClear method it crashes on release mode. It ...
1
vote
3answers
239 views

Is there a way to debug an already running application compiled in release mode?

I have a dotnet windows service that's currently hung, but running. Is there anyway to attach a debugger to it, despite the lack of symbols; and that it's already running?
0
votes
1answer
23 views

Android debug / release version of application

I have one question about finding if your application is in release mode or in debug. I need to find a way to detect the applications mode automatically with a function. For now I'm using a simple way ...