Comment 5 for bug 125870

Revision history for this message
Hilario J. Montoliu (hjmf) (hmontoliu) wrote : Re: Firefox Crashed x86_64

hmm, that gdb output doesn't include a stack trace.

would you please follow these instructions (if you still have the crash report in /var/crash) to see if they work (just copy and paste):

sudo apt-get install firefox-dbg
TMPDIR=$(mktemp -d)
apport-unpack /var/crash/_usr_lib_firefox_firefox-bin.1000.crash $TMPDIR
gdb -nx /usr/lib/firefox/firefox-bin -core $TMPDIR/CoreDump -ex 'backtrace full' -ex 'thread apply all backtrace full' -ex 'quit' 2>&1 | tee gdb.log
rm -fr $TMPDIR

That command will run gdb against the coredump file included in the crash report that was generated when firefox crashed.

Upload the resulting gdb.log to launchpad.

Thank you in advance.