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
0
votes
1 answer

What optimizations / settings should I use for compiling in release mode in Xcode for MacOS?

I have an app I am working on that will be used in MacOS with Adobe products. The SDK only comes with a debug release mode for the projects. If I try to edit the scheme and look under 'run', I cannot switch it to release as there is no other option…
Rich95
  • 199
  • 1
  • 3
  • 18
0
votes
0 answers

crash when in release mode when writing to a global array defined in main.cpp from a dialog

I am having a strange issue with a C++/QT programming I am writing In my program I have two UIs one for the main window and one for a dialog that is popped up when a action is selected from a menu off a qtreeview. The dialog is supposed to be used…
0
votes
1 answer

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 am working on MS visual studio 2005. I am building…
0
votes
0 answers

Log4Net shows no class names or line numbers in release build

We use a static logger class which internally utilizes Log4Net to create our log file. When we run the application in debug mode everything works fine and we get correct logs. However running the application in release mode yields incorrect log…
Crown
  • 169
  • 1
  • 7
0
votes
0 answers

When a Flutter view is embedded into an Android app, how to build in release mode?

One can add a Flutter view to an Android app using the instructions here: https://github.com/flutter/flutter/wiki/Add-Flutter-to-existing-apps When I build the APK, is the Flutter view in debug mode or release mode? I think it's in debug mode…
Mary
  • 18,347
  • 23
  • 59
  • 76
0
votes
1 answer

Visual Studio Release Mode causes unexpected error

I have to make a simple program with visual studio, using Windows APIs. My code works well in debug mode, however, it doesn't work well in release mode and I couldn't figure it why. I cut & paste the part where my program crashed. Here's that…
Hashnut
  • 367
  • 3
  • 18
0
votes
0 answers

Firebase 'onValue' stops listening when leaving the app, only in release mode iOS

I have tried to isolate the problem- on my main page, I added this code to test. void deleteMe() { FirebaseDatabase.instance .reference() .child( "users") .onValue .listen((Event user) { …
0
votes
1 answer

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 can step into MFC source code? If yes, how could…
Sheen
  • 3,333
  • 5
  • 26
  • 46
0
votes
0 answers

Locale decimal separator (point or comma) fails in release mode but works in debug mode (VS2010 / QT 5.61)

We have created a xml based script interpreter which assembles parts within a CAD system (VS2010, C++). With German locale settings (comma as decimal separator) the DLL, compiled for release, fails while interpreting a float from the XML file. Seems…
0
votes
2 answers

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 to load assemblies that that are targeted to…
Leon
  • 3,311
  • 23
  • 20
0
votes
2 answers

App crashing on Windows Phone when deployed in Release mode

We have developed a Xamarin Forms app supporting Android, iOS and Windows Phone. The app is working on all three OSes when deployed in Debug mode. It's also working on Android and iOS when deployed in Release mode. It crashes immediately after…
dsakpal
  • 126
  • 12
0
votes
1 answer

Android : Google signin is not working in release mode

Google Sign in is working fine in debug mode but not working in release mode apk, can anyone help me here
Rajappa R
  • 13
  • 2
0
votes
2 answers

Compiler error in inactive #ifdef block

I am working on a c++ program that was compiled with visual studio 2013 but needs to be compiled with visual studio 2008 as well, both in release mode. I am using #ifdef blocks to add alternatives to functions/features that were not supported back…
0
votes
1 answer

(Qt 5.6) Program cannot find .txt file when switching to "Release" mode

I have coding in IDE: Qt Creator 5.6 (Open source). In my program, I have to read a .txt file due to run. This .txt file is located in my Build folder. The .txt path is: "./config/values/Login.txt". When I run in Debug mode everything is fine.…
andseg
  • 658
  • 1
  • 9
  • 26
0
votes
1 answer

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, loads the data, then hangs, and the browser (Firefox)…
Edward Tanguay
  • 189,012
  • 314
  • 712
  • 1,047