如何分析核心转储

时间:2012-01-10 16:11:23

标签: ubuntu stack-dump

应用程序[rtorrent]崩溃后,它生成了core个文件,250MB。

Caught Segmentation fault, dumping stack:B] [Port: 58940][U 0/0] [D 0/10] [H 1/32] [S 72/75/768] [F 0/128]
Stack dump not enabled.
Aborted (core dumped)

我需要的是分析和查看堆栈跟踪,以了解rtorrent经常崩溃的原因。

1 个答案:

答案 0 :(得分:4)

gdb应该能够分析核心:

gdb /path/to/binary/rtorrent /path/to/coredump/rtorrent.core

键入where以查看堆栈跟踪。

要了解更多信息:使用调试符号编译rtorrent,运行,等待崩溃并使用gdb分析转储(在这种情况下,您可以看到发生崩溃的确切位置)。

UPD 注意,rtorrent构建在libtorrent之上,因此,您必须使用调试符号重建库和应用程序才能获得完整信息。