今天在 iOS 上编译原来开发的代码,出现了以下错误
xxxx.o does not contain bitcode. You must rebuild it with bitcode enabled (Xcodesetting ENABLE_BITCODE)
百度后知道 Xcode7.0 以后会默认开启 Bitcode 模式,很多旧的静态库由于编译问题,无法支持 Bitcode,需要重新编译才能使用。
如果不想重新编译,只需要关闭 Bitcode 就可以了
具体按以下操作: 在 Targets -> Build Settings -> Build Options 下 将 Enable Bitcode 设置为 NO 即可