Xcode10的坑: library not found for -lstdc++.6.0.9

        今天运行项目出现了几个问题,修复到后面就只剩下这个:library not found for -lstdc++.6.0.9。但是我也没删除什么啊,原来是xcode10的问题。xcode10里面的Linked Frameworks and Libraries移除了libstdc++6.0.9.tbd。

解决办法两个:1、使用xcode 9

                           2、导入libstdc++6.0.9.tbd

导入libstdc++6.0.9.tbd,有两个地方需要导入,在终端复制这两个地址打开相应的文件夹直接把libstdc++文件放进去;

真机:open /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/usr/lib;

模拟器:open  /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib

注意:导入完毕,要重启xcode!

libstdc++6.0.9.tbd百度网盘地址

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