How to show where app was running when it crashed
General and Desktop
4
Posts
2
Posters
881
Views
1
Watching
-
Howdy, If I am running in Debug and the app crashes and shows assembler code with the execution cursor, how can I show the cursor in my code to see where it was running? I thought there was a stack window, which would help, but I can't find it.
Thanks
Ron -
If you want to see backtrace of your crashed app then it depends on OS and debugger.
In gdb you can load your app and core file and run bt command to see a functions backtrace.
If you run your app under QtCreator and it crashed then you should see a backtrace in debugger window.