[BUG修复]“"_OBJC_CLASS_$_***文件名", referenced from:”问题的修复

今天要把之前一个项目按新需求做更新,项目在iPad2和iPad Retina模拟器上运行都没有问题,但是在iPad Air上运行时却包了3个错误,如下图


想来应该是64位适配的问题,在网上搜索各种解决方案无果,只好请教这个项目之前的开发人员,按他要求把Valid Architectures改为armv7,如下图


在运行,果然编译成功了,那么这个Valid Architectures和上面的Architectures是什么东西呢?

在网上搜索到这篇文章Xcode设置项之Architectures和Valid Architectures

大意如下:

Architectures
 
官方文档说明:
 
 
  1. Space-separated list of identifiers. Specifies the architectures (ABIs, processor models) to which the binary is targeted. When this build setting specifies more than one architecture, the generated binary may contain object code for each of the specified architectures. 
 
该编译选项指定了工程将被编译成支持哪些指令集,支持指令集是通过编译生成对应的二进制数据包实现的,如果支持的指令集数目有多个,就会编译出包含多个指令集代码的数据包,造成最终编译的包很大。

Valid Architectures
 
官方文档说明:
 
 
  1. Space-separated list of identifiers. Specifies the architectures for which the binary may be built. During the build, this list is intersected with the value of ARCHS build setting; the resulting list specifies the architectures the binary can run on. If the resulting architecture list is empty, the target generates no binary. 
 
该编译项指定可能支持的指令集,该列表和Architectures列表的交集,将是Xcode最终生成二进制包所支持的指令集。
 
比如,你的Valid Architectures设置的支持arm指令集版本有:armv7/armv7s/arm64,对应的Architectures设置的支持arm指令集版本有:armv7s,这时Xcode只会生成一个armv7s指令集的二进制包。

Build Active Architecture Only
 
官方文档说明:
 
 
  1. Boolean value. Specifies whether the product includes only object code for the native architecture. 
 
该编译项用于设置是否只编译当前使用的设备对应的arm指令集。
 
当该选项设置成YES时,你连上一个armv7指令集的设备,就算你的Valid Architectures和Architectures都设置成armv7/armv7s/arm64,还是依然只会生成一个armv7指令集的二进制包。
 
当然该选项起作用的前提是你的Xcode必须成功连接了调试设备。如果你没有任何活跃设备,即Xcode没有成功连接调试设备,就算该设置项设置成YES依然还会编译Valid Architectures和Architectures指定的二进制包。
 
通常情况下,该编译选项在Debug模式都设成YES,Release模式都设成NO。

说明
 
指令集都是可以向下兼容的
 
比如,你的设备是armv7s指令集,那么它也可以兼容运行比armv7s版本低的指令集:armv7、armv6


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值