Questions tagged [release-mode]

an ide or build setting requesting builds without debug objects

typical hallmarks of this mode: optimized compilation, different linking, omitted debugging artifacts

known environments where this concept applies: eclipse, visual studio, maven

177 questions
2
votes
2 answers

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 build it runs with the debugger attached (F5), but…
Andronicus
  • 1,799
  • 1
  • 14
  • 28
2
votes
1 answer

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 any inner exception and emails us the details. …
2
votes
1 answer

MSVS2013 - Neon intrinsics VTBL2: different result in debug mode vs release mode. How can I fix this?

I've cobbled together a neon equivalent to the SSE2 intrinsic _mm_shuffle_epi8. The code I currently have for this purpose is: static __forceinline __n128 shuffle8( const __n128& a, __n128 b) throw() { …
MNagy
  • 423
  • 7
  • 20
2
votes
1 answer

Eclipse CDT and Debug/Release Modes

I just got a simple "Hello, World!" C program to build and compile in the Eclipse CDT plugin. When you go to create a new C project, or when you go to set up a Run Configuration for an existing C project, Eclipse gives you the ability to specify…
smeeb
  • 27,777
  • 57
  • 250
  • 447
2
votes
1 answer

Release configuration not available in VS 2012

I have a web application in 2012, which I suppose converted from 2010 solution. It has only one configuration "Debug" listed in toolbar, configuration manager and publish wizard. Is there any settings to be changed in the web.config or other places?…
Krishna Sarma
  • 1,852
  • 2
  • 29
  • 52
2
votes
1 answer

Unable to update android studio lint settings

I am using android studio 1.1.0. I want to disable specific lint checks like 'Incomplete Translation'. So, I went to File -> Settings... -> Inspections -> Android Lint and unchecked 'Incomplete Translation' item, then pressed Apply & OK buttons.…
Ankur
  • 602
  • 8
  • 24
2
votes
2 answers

Swift app function not called in release mode

I have a iOS Swift app. I recently added a feature and uploaded the new version to TestFlight. For some reason, the main function for this new feature is not being called in release mode, but works perfectly in debug mode. What I tried so far:…
ANaimi
  • 6,266
  • 7
  • 32
  • 32
2
votes
4 answers

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 release mode. It crashes all the time. I have turned…
Nima
  • 854
  • 3
  • 11
  • 18
2
votes
2 answers

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 rendered as expected, imagine a simply XY graph. If the…
RIck
2
votes
1 answer

Android: app crashed when starting after signing in release mode

Currently I am facing an issue of app crashing when starting after signing in release mode, but in debug mode it worked fine. I could not figure out the problem right now, even though i did research and keep look for solutions but i still not…
Louis Loo
  • 641
  • 1
  • 7
  • 11
2
votes
2 answers

Angular halting after first ng-include in release mode

I'm compiling an angular app using the yeoman/generator-grunt-angular system, which I have modified slightly to accommodate code shared with another app. "Release mode" is compiling all of the templates into the javascript, so that everything is…
Daniel
  • 1,188
  • 11
  • 22
2
votes
10 answers

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 using namespace std; #ifdef _TEST_ #define _cerr cerr #else #define _cerr // cerr #endif int…
Pietro2
  • 21
  • 1
2
votes
4 answers

exception in release mode and not in debug mode

When i run this code in debug mode no exceptions appear but in release mode i get this exception : Unhandled exception at 0x768b4b32 in RealTimeSLT.exe: Microsoft C++ exception: cv::Exception at memory location 0x003de734.. why this problem…
RBM
  • 73
  • 3
  • 7
2
votes
1 answer

Using XMVECTOR from DirectXMath as a class member causes a crash only in Release Mode?

I've been trying to use XMVECTOR as a class member for a bounding box, since I do a lot of calculations, but I use the XMFLOAT3 only once per frame, so the bounding box has a method that gives me it's center in a XMFLOAT3, otherwise it stays in a…
ulak blade
  • 2,515
  • 5
  • 37
  • 81
2
votes
3 answers

release mode error, but not in debug mode

My code runs fine in debug mode but fails in release mode. Here's a snippet of my code where it fails: LOADER->AllocBundle(&m_InitialContent); while(!m_InitialContent.isReady()) { this->LoadingScreen(); } AllocBundle() will load the content…
xcrypt
  • 3,276
  • 5
  • 39
  • 63