我们在开发中难免会导入第三方的库,在真机测试的时候,会报错clang: error: linker command failed with exit code 1 (use -v to see invocation)
,错误详细信息如下:
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
这是因为我们新建的项目默认打开了bitcode设置,这些编译失败的原因是链接了第三方二进制的库或者框架,而这些框架或者库内没有包含bitcode的中间代码,从而导致项目编译失败。
解决:
在Build Settings
->ENABLE_BITCODE
设置为NO
,解决。