链接器警告 - 链接不同目标三元组的两个模块
我收到这个链接器警告:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
目标三元组是描述机器的字符串,例如
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).