在 c++ 中打印完整的回溯
我想以与 gdb 中类似的格式从 Linux 中的 C++ 程序转储回溯。我尝试使用 backtrace() 和 backtrace_symbols() 函数来实现此目的。这些返回的函数名称和偏移量。我可以使用 __cxa_demangle() 函数来获取可读的函数名称。
有没有办法也获取文件/行位置,因为它是由 gdb 完成的?
I want to dump a backtrace from a C++ program in Linux in a similar format as it is done in gdb. I tried to use the backtrace() and backtrace_symbols() functions for this purpose. These returned function names and offsets. I can use the __cxa_demangle() function to get a readable function name.
Is there any way to get the file/line positions too, as it is done by gdb?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如何更好从程序中调用 gdb 来打印其堆栈跟踪?`
方法 #4,显示了一种获取文件名和行的方法。但使用外部程序..
How it's better to invoke gdb from program to print its stacktrace?`
Methode #4, shows a way to get filename and line. But uses a extern program..