部署目标低于4.3的iPhone应用程序应包含armv6架构

发布于 2024-11-26 04:55:51 字数 459 浏览 2 评论 0原文

我遇到问题:-( 当我构建要发布的应用程序时,XCode 显示一条警告:

iPhone apps with a deployment target lower than 4.3 should include an armv6 architecture (current IPHONEOS_DEPLOYMENT_TARGET = "3.0", ARCHS = "armv7").

但是如何在构建设置中设置 armv6?我正在使用 XCode 4.2 这是我的构建设置:

在此处输入图像描述

谢谢!

I have a problem :-( When I build my application for release XCode shows a warning saying:

iPhone apps with a deployment target lower than 4.3 should include an armv6 architecture (current IPHONEOS_DEPLOYMENT_TARGET = "3.0", ARCHS = "armv7").

But how can I set armv6 in my build settings? I'm using XCode 4.2 and here's my build settings:

enter image description here

Thanks!

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

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

发布评论

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

评论(1

ぃ弥猫深巷。 2024-12-03 04:55:51

我没有使用过该版本,但是当前的 Xcode 不支持 iOS 2.0 的签名,所以当 iOS 5 出来时,3.0 可能也会出现同样的不支持的问题

这是来自 http://www.weston-fl.com/blog/?p=3050 (该网站帮助我解决了这么多错误,所以支持 Mike D。)

  1. 在 Xcode 中导航至“构建设置”并找到“架构”组(它位于顶部,很难错过)。将 armv6 添加到 Architectures 行。它应该包含armv6、armv7或标准(armv6 armv7)
  2. 将 Base SDK 设置为最新 iOS(当前设置为 iOS ...)
  3. 取消选中“Build Active Architecture Only”或将其设置为“NO”。
  4. 有效架构必须显示armv6、armv7
    当您的项目使用您自己的依赖库时,请使用相同(正确)的配置来构建它们。

I haven't used the version, but the current Xcode won't support signing for iOS 2.0 , so when iOS 5 comes out, 3.0 might have the same issue of not being supported

This is from http://www.weston-fl.com/blog/?p=3050 (This site has helped me resolve so many errors, so props to Mike D.)

  1. In Xcode navigate to Build Settings and find Architectures group (it’s on the top, so hard to miss). Add armv6 to Architectures line. It should contain armv6, armv7 or Standard (armv6 armv7)
  2. Set Base SDK to Latest iOS (currently set to iOS …)
  3. Uncheck Build Active Architecture Only or set it to NO.
  4. Valid Architectures must show armv6 armv7
    When your project uses your own dependent libraries, build them with the same (correct) configuration.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文