linker command failed with exit code 1((XXX.o)' was built without full bitcode.)

首先,遇到这种问题莫慌。第一反应就是这个是链接出现的问题。如下图所示:是由于百度地图包中的 BMSDKKeychainItemWrapper.m 文件不包含bitcode  因为当提交程序到App store上时,Xcode会将程序编译为一个中间表现形式(bitcode)。然后App store会再将这个botcode编译为可执行的64位或32位程序。

linker command failed with exit code 1((XXX.o)' was built without full bitcode.)_第1张图片

解决方法:

1.让第三方库(百度地图)支持bitcode(这个是第三方库的开发者的事情,所以这个不可取)

2.关闭bitcode

所以只好自己憋屈的去关闭bitcode了(截图如下)

linker command failed with exit code 1((XXX.o)' was built without full bitcode.)_第2张图片

你可能感兴趣的:(linker command failed with exit code 1((XXX.o)' was built without full bitcode.))