无法在 Mac OS X 上编译 QEMU;说了一些关于之前的 uint16 声明的内容

发布于 2024-11-29 23:14:48 字数 212 浏览 2 评论 0原文

当我尝试在 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 技术交流群。

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

发布评论

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

评论(1

峩卟喜欢 2024-12-06 23:14:48

您必须定义 uint16 以在 qemu/fpu/softfloat.h 中键入 qemu_uint16:

 typedef uint8_t flag;
+#ifdef __APPLE__
+#define uint16 qemu_uint16
+#endif
 typedef uint8_t uint8;
 typedef int8_t int8;
 #ifndef _AIX

以 + 号开头的行是您需要添加的行。

请参阅此处: 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:

 typedef uint8_t flag;
+#ifdef __APPLE__
+#define uint16 qemu_uint16
+#endif
 typedef uint8_t uint8;
 typedef int8_t int8;
 #ifndef _AIX

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

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