Qt Creator
-
That happens when the segfault happens in library for which you do not have source code or debugging symbols.
-
Contains source code and should be able to jump to the erroneous program without debugging symbols when the program encounters an error
-
Contains source code and should be able to jump to the erroneous program without debugging symbols when the program encounters an error
@hy1011 said in Qt Creator:
Contains source code and should be able to jump to the erroneous program without debugging symbols when the program encounters an error
Debugger stops exactly where segfault occurs. Often this is somewhere in Qt libraries, 3rd party libs or system libs. You just need to move a few steps back in stack view to find the last part of your code which got executed (and is usually the reason for the crash).