使用 Xcode 4 创建通用二进制文件
我用过 这个 hack 用于恢复对 Xcode 4 的 PPC 支持。
但是,每次我尝试创建通用二进制文件时,它只会创建一个 Intel 二进制文件。经过大量参数实验后,我想我找到了解决方案。
我必须将架构和有效架构设置设置为 ppc i386 x86_64
那么似乎我必须显式地将编译器版本设置为 GCC 4.2,而不是默认的 LLVM GCC 4.2。
所以我的问题是,这样做有什么影响吗?
I've used this hack to restore PPC support to Xcode 4.
However, every time I tried to create a universal binary, it would just create an Intel binary. After a lot of experimentation with parameters, I think I found the solution.
I had to set the Architectures and the Valid Architectures settings to ppc i386 x86_64
It then seems I have to explicitly set the compiler version to GCC 4.2, rather than LLVM GCC 4.2 which it defaults to.
So my question is, are there any implications to doing this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为这样做不会产生任何影响:
I don't think there is any implications by doing this: