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
1
vote
4 answers

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 could happen? In last ressort, is it possible to send…
clide313
  • 1,507
  • 2
  • 18
  • 27
1
vote
0 answers

WPF codebehind does not know xaml names after switching to release

I have a WPF project, that after switching from Debug to Release version, Window1.xaml.cs is no longer familiar with names I defined in Window1.xaml. Is there a way to fix this? Thanks!
Sonja
  • 9
  • 5
1
vote
1 answer

Entity Framework using more memory in Release mode

I am testing the memory usage of EF5 vs. EF6.1 (code first, POCO, ProxyCreation enabled) and came across some concerning behavior. My test is simple: 1) Check memory using GC.GetTotalMemory(false) 2) Run ~20 complex queries through different…
1
vote
0 answers

Oracle.DataAccess.dll getting copied to Release folder despite Copy Local = false

I have a .NET solution which contains multiple projects. All the projects which refer the Oracle.DataAccess.dll have set Copy Local = false for it. When I build the solution in Debug mode, the dll does not get copied to bin\Debug folder but in…
Brij
  • 11,731
  • 22
  • 78
  • 116
1
vote
1 answer

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 narrowed it down to that, I needed to turn on…
avgbody
  • 1,382
  • 3
  • 15
  • 31
1
vote
2 answers

Visual Studio Release and Debug difference

I'm writing a code in which I read and image and process it and get a Mat of double/float. I'm saving it to a file and later on, I'm reading it from that file. When I use double, the space it requires is 8MB for 1Kx1K image, when I use float it is…
smttsp
  • 4,011
  • 3
  • 33
  • 62
1
vote
2 answers

android map application release is not woking on device

I have Android Map Application v2 and Now I Have to Publish it on Play Store and for this i have fllowed these steps.But When I Install the app Map doesn't show on device.Here are the steps. Step : 1 Right Click Project->Export Application->Select…
user2527992
  • 47
  • 1
  • 6
1
vote
1 answer

MVC4 Jquery / UI / Ajax Release Build breaks my form submissions?

Very strange issue. I have an MVC4 web application which uses pop-up editing (through JQueryUI and partial views) and it works just fine when the application is built in debug mode, or if it's built in release mode and run on IIS Express. The…
Dave R
  • 1,626
  • 19
  • 28
1
vote
0 answers

Creating pointer to the sub arrays of mass allocated one dimensional array and release VC++ build

This is my first post I hope I am not making any mistake. I have the following code. I am trying to allocate and access a two dimensional array in one shot and more importantly in one byte array. I also need to be able to access each sub array…
1
vote
0 answers

CLLocationManager crashed with error EXC_BAD_ACCESS under release mode but not debug mode

My game is always crashing when a location window pops up. -(void) MyFunction { locationManager = [[CLLocationManager alloc] init]; locationManager.delegate = self; locationManager.desiredAccuracy = kCLLocationAccuracyThreeKilometers; …
1
vote
1 answer

Can Visual Studio's debugger have its "array safety" disabled?

What I'm referring to is the fact that in Debug mode you can sometimes get away with an array overflow, but then in Release mode it crashes and you have no idea which of the arrays is giving the problem (my code is really big). Can I disable the…
user1779802
  • 125
  • 3
1
vote
1 answer

android app with facebook SSO failure in release apk

I have a problem when I want to publish my android application with facebook integrated. I signed my app with eclipse, and used "keytool -exportcert -alias androidreleasekey -keystore MyReleaseKeystore.keystore | openssl sha1 -binary | openssl…
piobab
  • 1,352
  • 2
  • 13
  • 21
1
vote
3 answers

android app with facebook login integrated, how to generate the release key?

I have a problem when I want to publish my application android with fb integrated. I signed my app with eclipse, and used "keytool -exportcert -alias androidreleasekey -keystore MyReleaseKeystore.keystore | openssl sha1 -binary | openssl base64" in…
lansher1985
  • 179
  • 1
  • 13
1
vote
1 answer

CUDA kernel results different in release mode

I am testing some code in CUDA(I am new to CUDA and this is my first application). So far I have achieved results in CUDA which are same as obtained by running the code serially on CPU. I am using Visual Studio 2010 and the Build Configuration is…
umbersar
  • 1,821
  • 3
  • 24
  • 34
1
vote
3 answers

In Visual Studio 2010, how do I rebuild my site in "release mode"? I can't find "release mode"

I'm getting this error, vb / .net4, although the website is working fine, at the bottom of the page: YAF Compiled in DEBUG MODE. Recompile in RELEASE MODE to remove this information: I opened up Visual Studio 2010 right-clicked my solution, looked…
Jason Weber
  • 5,653
  • 6
  • 40
  • 73