链接器警告 - 链接不同目标三元组的两个模块

发布于 2024-10-09 11:42:54 字数 213 浏览 8 评论 0原文

我收到这个链接器警告:

WARNING: Linking two modules of different target triples!

这听起来很严重,但对我来说并不是很清楚。

问题是什么?我该怎么办?

顺便说一句,我正在使用 Xcode 3.2.5 和 LLVM 编译器 1.6

提前致谢。

I got this linker warning:

WARNING: Linking two modules of different target triples!

It sounds serious but not really clear to me.

What is the problem and what should I do about it?

Btw, I'm using Xcode 3.2.5 and LLVM Compiler 1.6

Thanks in advance.

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

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

发布评论

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

评论(1

握住我的手 2024-10-16 11:42:54

目标三元组是描述机器的字符串,例如i686-apple-darwin9.5.0。最有可能的是,您正在混合在不同 OSX 版本上构建的目标文件;这是无害的(除了生成的二进制文件可能需要这些版本中的最大值)。

The target triple is a string describing the machine, such as i686-apple-darwin9.5.0. Most likely, you are mixing object files that had been built on different OSX releases; this is harmless (except that the resulting binary may require the maximum of these versions).

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