无需为 iPhone 核心图编译架构
我正在尝试一个核心图 iphone 示例,我得到:
没有要编译的体系结构(ONLY_ACTIVE_ARCH=YES,active arch=i386,VALID_ARCHS=armv6 armv7)。
在项目设置下->架构中,唯一的选择是标准、优化和原生架构。
有什么想法吗?
谢谢。
I'm trying out a core plot iphone example and I get:
No architectures to compile for (ONLY_ACTIVE_ARCH=YES, active arch=i386, VALID_ARCHS=armv6 armv7).
Under project settings -> architecture, the only options are standard, optimized, and native arch.
Any ideas?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将 i386 添加到有效架构
Add i386 to Valid Architectures
我在尝试运行一些较旧的示例代码时遇到了相同的错误...事实证明,项目构建设置已更改(通过 iOS 4.1 SDK?)。不管怎样,改变这些设置对我有用:
ORIG PROJECT“BUILD”SETTINGS:
和
新设置:
和
就像魔法一样......
〜Paul
I was getting the same error while trying to run some older sample code... It turns out that the project build settings get changed (by the iOS 4.1 SDK?). Anyway, changing these settings back worked for me:
ORIG PROJECT "BUILD" SETTINGS:
and
NEW SETTINGS:
and
Just like magic...
~Paul