本文介绍了Xcode armv7问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的应用程序针对模拟器而不是设备构建良好:

My application builds fine for the simulator but not the device:

我正在使用ParseKit库,它似乎不喜欢与armv7混合.

I'm using the ParseKit lib which doesn't seem to like being mixed with armv7.

我认为我必须与图书馆建立某种形式的链接?但是如何?

I think I have to do some form of linking with the library? But how?

谢谢.

推荐答案

您似乎已经链接了该库,只是它不是为armv7构建的.

You seem to have linked the library, only it is not built for armv7.

ParseKit Xcode项目有一个名为ParseKitMobile的目标,该目标是为armv7构建的.尝试使用它.

The ParseKit Xcode project has a target called ParseKitMobile, which is built for armv7. Try using that.

您还可以尝试将"Base SDK"设置更改为iOS,这将为您提供体系结构的配置选项.

You could also try changing the "Base SDK" setting to iOS, that should give you arm options for the architecture.

这篇关于Xcode armv7问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-14 12:52