Tagged Questions
The release-mode tag has no wiki summary.
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 :
...
7
votes
1answer
339 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 ...
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
1answer
45 views
Identify debugging in VisualStudio
I have an interesting problem.
Is it possible to identify if an assembly is running in Visual Studio?
Look at the following code.
if(FoundThatYouAreDebuggingInVisualStudio)
{
Print "Hello"
}
...
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
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
941 views
Why are my binaries not placed in the /bin/release folder when I build a Windows Service in C#?
I am new to C# and VS 2010, and am following an online guide to creating a C# Windows Service in Visual Studio 2010.
When I try and build the application however, I don't get any files created under ...
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
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_
...
2
votes
6answers
1k 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.
2
votes
3answers
3k 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
2answers
675 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 ...
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
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
1answer
181 views
C# OutOfMemoryException only in Release mode when compiled with VS2010?
Greetings!
My program generates OutOfMemoryExcetion only in Release mode, compiling with VS2010 C# compiler. The operation that it was performing when the crash occurred was instantiating 1600 jagged ...
1
vote
5answers
587 views
iPhone app crashes only in Release mode on 3G
I have an app I'm writing that crashes when I call addSubview on a UIScrollView with "EXC_BAD_ACCESS". It only does this on iPhone 3G in release mode and only on the device. I works fine in all these ...
1
vote
2answers
746 views
Silverlight 4 application shows blank page in release build
I'm working on a fairly large Silverlight 4 application (42 projects in 1 solution), and I'm wrestling with a really strange issue.
The application works fine in a debug build, and even in release ...
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
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 ...
0
votes
0answers
24 views
fixing libvlc release mode crash with VC2010
I am using libVLC in one of my apps which I am compiling with VC2010 (also tried VC2008), the debug mode of my app works great but as soon as I compile to release mode and try to call into libVLC I ...
0
votes
1answer
55 views
Publishing using different Web.config
I have a Visual Studio 2010 web-application solution I have created. In this solution I have created a new mode in the configuration manager called "MyProjectName". I have created an additional ...
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
1answer
199 views
v8 release mode linker error with winsock
This subject became a side subject after I accepted an answer for my last question, so I will put it here as a separate topic for neatness, and I believe this will make it more useful for others.
I ...
0
votes
0answers
184 views
box2d errors when compiling Xcode project in Release mode
I've developed a game using cocos2d (box2d) v 0.99.5, iOS SDK 4.2 and XCode 3.2.5. It works perfectly in Build mode but gives "no such file or directory" errors for all box2d header files when build ...
0
votes
1answer
162 views
How can I link my project to the debug version of the MFC DLL in Release mode?
I am working on a project which is in release build. I can't work on debug build for certain reason.
In the Release build, can I instruct Visual Studio to link against debug version of MFC DLLs, so I ...
0
votes
2answers
97 views
Can VS2010 project targeted to .NET 3.5 be released to .NET 4.0 only machine
I am tasked with requirements for the production machine (Server 2008 R2), and am wondering if this project setup would work with only .NET 4.0 installed and IIS 7 for WCF Service. Is .NET 3.5 needed ...
0
votes
2answers
749 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
428 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
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 ...
0
votes
1answer
182 views
'Generating code' and stop in building release mode (Visual Studio 2005 )
I have a problem about release build
I'm using Visual Studio 2005. The project is worked on MFC
When I build the project what I working in debug mode, It builds done successfully.
but in release ...
0
votes
1answer
172 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 ...
0
votes
4answers
519 views
iPhone release build is crashing
A project i'm working on is crashing when built with release configuration.
We need to send the application to apple for review and it is crashing before even entering the app.
Any idea how that ...
0
votes
3answers
636 views
Problem in compiling in release mode --VC++
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 and ...