QtCreator debugger shows assembler only

I am using linux and I am using QTCreator. For some reason, when I run the program in debug mode, when it occurs, I get an assembler dump. No stack trace or anything legibile. I think that my debugger showed me this material, but for some reason it was disabled. What can I do to get it back?

thank

+3
source share
2 answers

The real problem is that my make and qmake commands were replaced, so the make file was created with -O3 instead of -g, even when the program was compiled in debug mode from Qt.

0
source

, Debug , . -ggdb gcc

+1

All Articles