Skip to main content

Questions tagged [debug-build]

The tag has no usage guidance.

debug-build
1 vote
1 answer
2k views

android SHA-256 certificate from debug apk file

I am working on declaring app site association in assetLinks.json file and as a part I need to declare the SHA-256 certificate fingerprint. have a debug apk and is there any way to get its SHA-256 ...
Sonia John Kavery's user avatar
0 votes
1 answer
28 views

Does enabling coredump make my software debug build?

Query This question is mainly oriented to Linux distributions. Usually there are Debug and Release builds. Will my Release build become debug build if I enable coredumps. Reason for the query. We are ...
ram's user avatar
  • 23
0 votes
1 answer
1k views

Meson compiling subprojects in debug mode

I have a parent project and a subproject using meson. Quite sadly the subproject only builds in release mode. However, even if I set the parent project to debug using --reconfigure and check with ...
Makogan's user avatar
  • 9,191
0 votes
0 answers
44 views

Where I can find Primefaces 3.4.1 bundle package (dev package)?

The official link in the official Primefaces download page is broken, and in Maven repository I can find only the bin, not the bundle. The bundle package is a bin package with the source code and the ...
Marco Sulla's user avatar
  • 15.7k
1 vote
1 answer
407 views

After running a project in Qt Debug build, the binary (exe) disappears and object files are shrunk. How to fix that?

My Qt Creator is 4.11 which is based on Qt 5.14 in Ubuntu 17.04. Due to ongoing development, I have not updated Qt Creator and Ubuntu to avoid disturbing the working setup. Whenever I run it in Debug ...
iammilind's user avatar
  • 69.4k
0 votes
1 answer
136 views

Facing weird issue with debug and release builds of the same app

I am facing a weird issue with my Android apk build. I have an app which has livestreaming feature. The livestreaming feature is by a third party sdk. The issue is that, it works silky smooth in the ...
Varun A M's user avatar
  • 1,152
0 votes
3 answers
430 views

debug build cannot access out.jar during build because it is being use by another process

now that I'm working from home I'm trying to work for my home desktop (windows) when I try and run a debug build. I get the error. Execution failed for task ':app:packageDebug'. > Exception ...
Donovan Jones's user avatar
2 votes
1 answer
87 views

What should I do in CMakeLists.txt w.r.t. the build type?

I'm the author of some library which gets built using CMake. If a user specifies a build type they run cmake - I can oblige that, no problem. But what is the best practice when a user doesn't ...
einpoklum's user avatar
  • 127k
0 votes
2 answers
50 views

Why does debug build result in one more variable?

This is the code: Employee e = new Employee() { Name = "Jeff", Age = 45 }; And this is how it is compiled when building a debug assembly: Employee employee = new Employee(); employee.Name = "Jeff"; ...
Марк Павлович's user avatar
1 vote
1 answer
601 views

My language translation are not working in debug build

My language translation are not working in debug build, However It works fine in release build, I checked and got a workaround to set the language dynamically inside activity class, but I don't want ...
HAXM's user avatar
  • 3,798
4 votes
0 answers
126 views

Assembler - why midpoint in calling functions?

I'm analyzing simple application in C++: int add(int a, int b) { return a + b; } int main() { int res = add(5, 8); return 0; } Its disassembly compiled in debug mode looks like ...
Spook's user avatar
  • 25.8k
2 votes
2 answers
156 views

Function having release version inline on h file and debug version implemented on cpp

I am maintaing a legacy MFC application and I see a pattern exactly like the one on Object-Oriented Programming under Windows book, where the relevant part is: Persview.h #ifndef _DEBUG // debug ...
sergiol's user avatar
  • 4,239
0 votes
1 answer
404 views

Android debug build failing with "Stackoverflow Error" post gradle upgrade to 2.3.0

I had recently upgraded to gradle plugin 2.3.0 and the gradle version to 4.3.1. Post that upgrade the debug build is failing with the following stack trace. Have no clue what is going wrong and where. ...
bluemoonstudios's user avatar
3 votes
1 answer
2k views

What does CMAKE_BUILD_TYPE affect, other than the compiler flag selection?

I know that if if we set -DCMAKE_BUILD_TYPE=Release (or Debug etc.), then the values of CMAKE_C_FLAGS_RELEASE and CMAKE_CXX_FLAGS_RELEASE will be appended to CMAKE_C_FLAGS and CMAKE_C_FLAGS ...
einpoklum's user avatar
  • 127k
-7 votes
1 answer
420 views

how can i make a label invisible at release build [closed]

I want to hide a listview item on release build but make it visible on debug build. I searched it on internet but I can't find anything about it. Anyone can help me?
user8141097's user avatar

15 30 50 per page