Translations:Development/FAQs/Debugging FAQ/11/en: Difference between revisions
Appearance
Importing a new version from external source |
(No difference)
|
Latest revision as of 10:25, 11 March 2016
Once you have a core file for a crash, you can examine it with gdb appname core . This will open gdb on the core file for the given application. Once at the gdb prompt, the most useful command is bt
which generates a backtrace of the crash.
For more information about how to use gdb, see this page