无法在 Mac OS X 上编译 QEMU;说了一些关于之前的 uint16 声明的内容
当我尝试在 Mac OS X 上编译 QEMU 时(我使用的是 Lion,但它也发生在 Snow Leopard 上),它给了我一条关于 uint16 的错误消息。您可以在此链接找到完整的输出,因为它太长,无法粘贴到此处(向下滚动到底部查看错误。)谁能告诉我如何解决这个问题,最好不更改源代码?
When I try to compile QEMU on Mac OS X (I'm on Lion, but it happened on Snow Leopard as well) it gives me an error message about uint16. You can find the full output at this link, as it's too long to paste here (scroll down to the bottom to see the errors.) Can anyone please tell me how to fix this, preferably without changing the source code?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须定义 uint16 以在 qemu/fpu/softfloat.h 中键入 qemu_uint16:
以 + 号开头的行是您需要添加的行。
请参阅此处: http://lists.gnu.org/ archive/html/qemu-devel/2011-10/msg03794.html
You have to define uint16 to type qemu_uint16 in qemu/fpu/softfloat.h:
The lines beginning with the + sign are the ones you need to add.
See here: http://lists.gnu.org/archive/html/qemu-devel/2011-10/msg03794.html