Tagged Questions

5
votes
13answers
270 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?
7
votes
1answer
149 views

What is the real benefit of release mode for ASP.Net

I know there are several questions asking the same question "Why should I use release mode". The problem I have with the answers is that they simply state, quite strongly, that you should always use …
2
votes
10answers
176 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_ …
2
votes
7answers
316 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
306 views

Problem drawing graphics to user control

My application pops a form as a child of the main form. On the form is User Control with a Panel where Graphics are rendered. When executed from Visual Studio in debug mode the drawing is often …
0
votes
3answers
621 views

How to generate PDB’s for .net managed projects in release mode?

I know PDBs are generated for managed projects in .NET by giving the compiler the /debug argument. Is there a way to specify this in the VS (2005) GUI? The only way I could get it to generate PDBs …
2
votes
5answers
249 views

How to find out if a .Net Assembly was compiled with the TRACE or DEBUG flag

Is there any way to find out if an Assembly has been compiled with the TRACE or DEBUG flag set without modifying the assembly.
3
votes
3answers
395 views

Visual C++ express 2008: Why does it places megs of null bytes at the end of the release executable?

Recently I have discovered that my release executable (made with msvc++ express 2008) becomes very large. As I examine the executable with a hex viewer I saw that only the first 300k bytes contains …
0
votes
3answers
287 views

Problem in compiling in release mode --VC++

Hi All, I am compiling my project in the release mode in VC++. I have a .def file where i have declared the setLog and now i am getting following error Linking... Creating library Release/HKL.lib …
1
vote
3answers
156 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?