Tagged Questions
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?
8
votes
4answers
5k views
Help with Linker error LNK2038 !
I am trying to port a small app of mine from Win XP and VS 2005 to Win 7 and VS 2010.
The app compiles and runs smoothly in Debug mode, however in Release mode I get the following error :
...
6
votes
1answer
390 views
C++ defines for a 'better' Release mode build in VS
I currently use the following preprocessor defines, and various optimization settings:
WIN32_LEAN_AND_MEAN
VC_EXTRALEAN
NOMINMAX
_CRT_SECURE_NO_WARNINGS
_SCL_SECURE_NO_WARNINGS
_SECURE_SCL=0
...
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 ...
3
votes
3answers
455 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 ...
2
votes
3answers
463 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 ...
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_
...
0
votes
2answers
117 views
Access violation in mlock
I have a console application (written using MS VS2010 SP1).
No MFC, no ATL, just standard library.
In debug build everything works Ok.
But in release build there is an access violation:
"First-chance ...
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
42 views
how can i diagnose exception in window 7 release mode compilation with VC 2008
Hi
i have strange problem , my application (exe) is working fine in debug mode in windows 7
but stop to work with exception when compiling in release mode .
how can i debug the program to find what ...