library not found for -libstdc++.6.0.9

报错的原因:
Xcode升级到Xcode10.0后,由于去掉陈旧的libstdc++库替换为libc++,libc++相对是苹果最新版的C++库,经过优化并全面支持C++11

解决方法 1:
下载libstdc++库,下载链接,提取码arms
将 libstdc++、libstdc++.6、libstdc++6.0.9拷贝到Xcode的如下目录:
1.真机环境:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/usr/lib/
2.模拟器环境:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/

解决方法2:
1.下载库libstdc:https://github.com/devdawei/libstdc-.git
2.cd到libstdc文件下运行脚步install.sh文件(终端命令:sudo sh install.sh)

方法二其实就是自动执行方法一的操作

你可能感兴趣的:(library not found for -libstdc++.6.0.9)