Xcode7 ‘XXXX‘does not contain bitcode. 的错误

升级了Xcode7,之前加入的第三方库,在iPhone4上编译报错,错误如下:

 does not contain bitcode. You must rebuild it with bitcode enabled (Xcode setting ENABLE_BITCODE), obtain an updated library from the vendor, or disable bitcode for this target. for architecture armv7
clang: error: unable to execute command: Segmentation fault: 11
clang: error: linker command failed due to signal (use -v to see invocation)

上述错误的意思大概是:

这是因为一个第三方的库不兼容,我的工程中开启了 ENABLE_BITCODE (应该是升级之后自动转换的),而这个第三方的库在编译的时候没有 enable bitcode,所以导致上诉问题。

解决方法:

然后在编译就OK了

时间: 2024-12-04 12:41:55

Xcode7 ‘XXXX‘does not contain bitcode. 的错误的相关文章

bitcode编译错误

xcode编译引用的静态库可能会出现编译错误: does not contain bitcode. You must rebuild it with bitcode enabled (Xcode setting ENABLE_BITCODE), obtain an updated library from the vendor, or disable bitcode for this target. for architecture arm64 clang: error: linker comm

xcode7真机调试identifier not avaliable错误

Error: An App ID with identifier "*****" is not avaliable. Please enter a different string. 错误原因是这个bundle ID已经被别人提前占用了.这种错误一般发生在你运行别人的项目. 解决办法当然是修改你的bundle ID 了,修改bundle ID 会遇到一大堆问题,具体可参看这篇文章: http://blog.csdn.net/soindy/article/details/47184933

由于出现操作系统错误 3,进程无法读取文件D:\XXXX\X.pre (源: MSSQL_REPL,错误号: MSSQL_REPL20024)

今天在服务器做发布+订阅的时候出现了一个问题,如下: 由于出现操作系统错误 3,进程无法读取文件“D:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\ReplData\unc\USER-N18O5DGQU6_CLOUDTRADB_GYPT_GYPT_F\20151127091512\fn_diagramobjects_129.pre”. (源: MSSQL_REPL,错误号: MSSQL_REPL20024)获取帮

iOS开发 常见错误

一.NSAppTransportSecurity 错误提示:NSURLSession/NSURLConnection HTTP load failed (kCFStreamErrorDomainSSL, -9802) iOS9让所有的HTTP默认使用了HTTPS,原来的HTTP协议传输都改成TLS1.2协议进行传输.直接造成的情况就是App发请求的时候弹出网络无法连接.解决办法就是在项目的info.plist 文件里加上如下节点: NSAppTransportSecurity - NSAllow

【解决方法】You must rebuild it with bitcode enabled (Xc

今天把xcode升级到7.0了,除了swift语法的一些问题,还有几个问题比较麻烦,其中一个就是包含标题的一个错误提示. 开发环境:Xcode 7.0 开发语言:swift(引入了第三方的oc库) 出现场景: 正常调试是没有问题的,但是在Archive的时候,报出了这个错误. 问题详情: (null): URGENT: all bitcode will be dropped because 'xxxx' was built without bitcode. You must rebuild it

You must rebuild it with bitcode enabled (Xcodesetting ENABLE_BITCODE)

以前的项目 放到Xcode7中运行时可能会遇到以下错误:You must rebuild it with bitcode enabled (Xcodesetting ENABLE_BITCODE) 未来Watch应用须包含Bitcode,iOS不强制,但Xcode7默认会开启Bitcode. 如何适配? 方法一:更新library使包含Bitcode,否则会出现以下中的警告: 1 (null): URGENT: all bitcode will be dropped because '/User

The transaction log for database 'xxxx' is full due to 'ACTIVE_TRANSACTION'

今天查看Job的History,发现Job 运行失败,错误信息是:“The transaction log for database 'xxxx' is full due to 'ACTIVE_TRANSACTION'.” 错误消息表明:数据库的事务日志文件空间耗尽,log 文件不能再存储新的transaction log. SQL Server将事务日志文件在逻辑上划分为多个VLF(Virtual Log Files),将这些VLF组成一个的环形结构,以VLF为重用单元.如果一个VLF 中存在

SqlServer发布订阅错误收集

目录 1. SqlServer发布订阅错误收集 1.1. Message:脚本对于表"dbo.table"失败. 1.1.1. 错误消息 1.1.2. 处理方法 1.2. 由于出现操作系统错误 3,进程无法读取文件D:\\XXXX\\X.pre (源: MSSQL_REPL,错误号: MSSQL_REPL20024) 1.2.1. 错误消息 1.2.2. 解决方法 1.3. 应用复制的命令时在订阅服务器上找不到该行 1.3.1. 错误消息 1.3.2. 解决方法 1.4. 数据库 'd

“-fembed-bitcode is not supported on versions of iOS prior to 6.0” 错误

升级完Xcode7之后真机测试出现这个错误,在网上找到这个方法