Questions tagged as 'debug'

1
answer

Advantages of Watch in comparison to Break point

Since it is possible to evaluate the value of a variable by inserting a break point where it will be used, I see no apparent advantage. Is there any advantage of using watch instead of break point to debug the code? Which are? Home...
asked by 20.06.2017 / 18:04
1
answer

Debug vs Release in CMake

How to specify the flags for debug vs C / C ++ release.     
asked by 02.07.2015 / 16:12
2
answers

Error activating WP_DEBUG

I have a problem with my WordPress site. When I set it to wp-config.php , my site gets normal: define('WP_DEBUG', false); But when I define define('WP_DEBUG', true); The site gives page error not found. And I needed to debug beca...
asked by 18.11.2015 / 20:49
1
answer

The entry point of an executable is the memory address of the main function?

hello.c #include <stdio.h> void main(void){ // << entry point printf("Hello World!"); } hello.asm global _main extern _printf section .text _main: ; << entry point push message call _pr...
asked by 20.11.2018 / 17:31
1
answer

Perform crawling and debugging in .NET

While developing an application, there are times when I get lost and I want to understand how my code is running. For example, in which iteration of a given loop of repetition it is, what is the value of a given variable. Until then I did thi...
asked by 19.12.2017 / 13:34
1
answer

How to make edits worth while debugging?

When I debug a code in Pycharm (Shift + F9) and make some changes, it is not recognized during the same debugging session. I am required to restart the debug again for the changes to be acknowledged. Is there any way for Pycharm to recognize...
asked by 01.08.2018 / 02:57
2
answers

Android Studio 3.0 Update Error

Well today an update appeared for Android Studio and as I always put it to update normally. When I finished updating I asked to download some gradle versions and things like that, I just installed it so I let it run normally. But the debug \ man...
asked by 26.10.2017 / 17:39
1
answer

Why do strings (QString) not appear during debugging in Visual Studio?

I have a program in Qt 5 where I use QString to manipulate text strings. However, when I debug the program, I can not see the contents of the strings (either in the "Auto", "Locals" or "Watch" window, or even when I leave the mouse poin...
asked by 14.03.2016 / 12:25
1
answer

How to debug in C #?

How to debug in C # based on the simple form of PHP that usually uses var_dump or print_r ? I have an object in C # but I do not know how to know what's in the structure of it.     
asked by 28.06.2015 / 02:36
2
answers

Error opening emulator in Android Studio

I'm having an error here in Android Studio, when I debuggar the App in the emulator, it does not open and the following error appears:    "EMULATOR: ERROR: x86 emulation currently requires hardware acceleration! Please ensure Intel HAXM is...
asked by 25.09.2015 / 01:08