如何使用 GDB 新的 python 支持将变量分配给 python?
最近,我惊讶地发现当前版本的 GDB 支持 python 脚本,这很可能意味着我可以在调试程序时绘制变量——这是我很久以前的梦想。然而,我很快就陷入了困境,因为我无法“从”GDB 中获取变量的值并将其分配给 python 变量。该方法应该在gdb模块内部,但我不知道该调用哪个函数。有人知道吗?请告诉我:) 谢谢!
Recently I came across with surprise the the current version of GDB support python scrippting, which very likely means I can plot variables while debugging the program -- something I dreamed about a long time ago. However, I quickly get stuck because I can't get a variable's value "out of" GDB and assign it to a python variable. The method should be inside the gdb module, but I don't know which function to call. Anybody knows? Tell me please :) Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要访问当前选定的 gdb 框架中的变量
x
,您可以使用这将分配一个
gdb.Value
实例到x
。To access the variable
x
in the currently selected gdb frame, you can useThis will assign a
gdb.Value
instance tox
.