iOS Xcode错误: linker command failed with exit code 1 (use -v to see invocation) 可能错误与处理方法

时间:2021-09-17 10:46:50

遇到“linker command failed with exit code 1 (use -v to see invocation)”错误

 1、使用到的第三方的库 .a 文件不存在于本地。

一般解决:找到该库,重新添加引用。

2、其实是IOS9适配问题

bitcode是被编译程序的一种中间形式的代码,包含bitcode配置的程序将会在App store上被编译和链接。bitcode允许苹果在后期重新优化我们程序的二进制文件,而不需要我们重新提交一个新版本到App store.

Xcode7.0默认开启bitcode,如果App使用的第三方类库不支持bitcode会提示错误,修改:Bulid Settings -->Enable Bitcode中选择关闭;

3、有命名重复的类

找到该类,修改或删除