第三方库bitcode d:-undefined and -bitcode_bundle (Xcode setting ENABLE_BITCODE=YES) cannot be used together

d: -undefined and -bitcode_bundle (Xcode setting ENABLE_BITCODE=YES) cannot be used together
clang: error: linker command failed with exit code 1 (use -v to see invocation)

bitcode是什么?
我们都知道语言OC/Swift/C/C++最终都会编译成操作硬件的语言,但是Bitcode是在那一层呢? 根据文档,应该是OC/Swift/C/C++和汇编语言的中间层。
为什么会有中间层Bitcode呢?
我得理解是,由于底层的硬件架构不同,编译出来的机器码不同,所以才有Bitcode中间层的作用。

Bitcode解决方法
要么让第三方库支持,要么关闭target的bitcode选项。

在Xcode 7中,我们新建一个iOS程序时,bitcode选项默认是设置为YES的。我们可以在”Build Settings”->”Enable Bitcode”选项中看到这个设置。

对于iOS,bitcode是可选的;对于watchOS,bitcode是必须的;而Mac OS是不支持bitcode。

你可能感兴趣的:(第三方库bitcode d:-undefined and -bitcode_bundle (Xcode setting ENABLE_BITCODE=YES) cannot be used together)