原因:
Xcode10升级之后会出现这个错误
首先找到错误信息
image.png
上面提示是说-listdc++.6库找不到 那么我们就往项目里面去添加缺省文件。
libstdc传送门:链接:https://pan.baidu.com/s/15Gno1kksZbXmxSxVZZmI4w 密码:wro4
以下为路径(注意不同版本的sdk 路径不同需要自己替换)
真机 /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/usr/lib/
模拟器
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib
将缺省的文件拖到对应的目录下
clean之后build 发现成功
网友评论