如何使用 GDB 新的 python 支持将变量分配给 python?

发布于 2024-11-06 12:58:49 字数 164 浏览 0 评论 0原文

最近,我惊讶地发现当前版本的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

蘑菇王子 2024-11-13 12:58:49

要访问当前选定的 gdb 框架中的变量 x,您可以使用

x = gdb.selected_frame().read_var("x")

这将分配一个 gdb.Value 实例到 x

To access the variable x in the currently selected gdb frame, you can use

x = gdb.selected_frame().read_var("x")

This will assign a gdb.Value instance to x.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文