如何从GDB的回溯中删除完整文件路径的前缀?
正常情况下,当我在 gdb 中执行 backtrace 命令时,它总是显示文件部分中每个帧的完整路径,例如:
function name() at /home/username/development/path/to/file/source.cpp:20
我想删除路径前缀并仅显示:
function name() at path/to/file/source.cpp:20
我可以使用的 GDB 设置命令是什么?
As normal, when I executing backtrace command in gdb, it always shows the full path for every frame in file section like:
function name() at /home/username/development/path/to/file/source.cpp:20
I'd like to remove the path prefix and only show:
function name() at path/to/file/source.cpp:20
What is the GDB setting command that I can use?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为答案可能是在编译时使用相对路径而不是绝对路径,以便所需的字符串进入您的二进制文件。
I think the answer may be to use relative rather than absolute paths at compile time, so the desired strings get into your binary.