使用 gdb 调试 qemu
如何使用 gdb 调试 qemu?我一直在谷歌搜索但找不到任何具体的东西。
How can I use gdb to debug qemu? I have been googling but couldn't find anything concrete.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我在 GDB 7.5 中遇到错误 -> “访问内存地址时出错”
似乎“位置独立可执行文件”有问题......所以使用
和调试应该可以工作。
I got an error with GDB 7.5 -> "Error accessing memory address"
It seems there is a problem with "Position Independet Executables" ...so use
and debug should work.
尝试以下操作:
默认情况下,qemu 使用“CFLAGS = -O2 -g”选项构建,该选项在某种程度上不允许添加调试符号。使用 --enable-debug 选项将意味着 -O2 将不会被添加。
Try the following:
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.