使用 gdb 调试 qemu

发布于 2024-10-12 03:50:50 字数 44 浏览 4 评论 0原文

如何使用 gdb 调试 qemu?我一直在谷歌搜索但找不到任何具体的东西。

How can I use gdb to debug qemu? I have been googling but couldn't find anything concrete.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

很糊涂小朋友 2024-10-19 03:50:50

我在 GDB 7.5 中遇到错误 -> “访问内存地址时出错”

似乎“位置独立可执行文件”有问题......所以使用

./configure --enable-debug --disable-pie

和调试应该可以工作。

I got an error with GDB 7.5 -> "Error accessing memory address"

It seems there is a problem with "Position Independet Executables" ...so use

./configure --enable-debug --disable-pie

and debug should work.

北斗星光 2024-10-19 03:50:50

尝试以下操作:

./configure --enable-debug

默认情况下,qemu 使用“CFLAGS = -O2 -g”选项构建,该选项在某种程度上不允许添加调试符号。使用 --enable-debug 选项将意味着 -O2 将不会被添加。

Try the following:

./configure --enable-debug

By default qemu builds with "CFLAGS = -O2 -g" option which somehow doesn't allow debug symbols to be added. Using --enable-debug option will mean -O2 will not be added.

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