附加后如何在 Eclipse 中执行 gdb 脚本?
当我使用 eclipse 附加到进程时,我通常会运行加载库脚本。 我刚刚附加到进程后它会自动运行此脚本。但 .gdbinit 脚本是在附加开始时执行的。因此,在 .gdbinit 脚本中加载库将失败。 是否有“ON_ATTACHED”功能可以让我做到这一点?
I usually run a load libraries script when I attached to a process when I using eclipse.
I what it run this script automatically after I just attached to the process. But the .gdbinit script is executed at the beginning of attaching. Thus load libraries will fail in the .gdbinit script.
Is there a "ON_ATTACHED" function to let me do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我在另一个问题中找到了解决方案,我可以编写 .gdbinit 脚本并定义 post_run 命令。
如何重新定义 gdb 内置函数命令调用调用原文
I found the solution in another of my questions, I can write a .gdbinit script and define a post_run command.
How to redefine a gdb built-in command and call and call the original