使用 Xcode 4 创建通用二进制文件

发布于 2024-11-05 06:46:44 字数 382 浏览 0 评论 0原文

我用过 这个 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 技术交流群。

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

发布评论

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

评论(1

﹉夏雨初晴づ 2024-11-12 06:46:44

我认为这样做不会产生任何影响:

  • 架构有效架构仅控制生成的二进制文件以及生成的胖二进制文件。它们主要是拱形标志。
  • 我认为没有必要选择 GCC 4.2 而不是 LLVM GCC 4.2;只有少数情况LLVM GCC 4.2与 GCC 4.2 功能不匹配

I don't think there is any implications by doing this:

  • Architectures and Valid Architectures only control the binaries generated as well as the resulting fat binary. They are mainly arch flags.
  • selecting GCC 4.2 instead of LLVM GCC 4.2 is not necessary in my opinion; there are only few cases where the LLVM GCC 4.2 does not match the GCC 4.2 features.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文