xcode 10 libstdc++6.0.9 报错适配(library not found for -lstdc++.6.0.9)

xcode 10 中苹果删除了内置libstdc系列内置库的支持了。

1.临时解决的办法可以在之前版本的xcode中拷贝libstdc++.6.0.9.tbd这个类库放到以下路径

路径:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/usr/lib/

libstdc++.6.0.9.tbd 下载地址 https://github.com/liluojian/work.git

2.也可以把项目中用到libstdc 的替换成libc++,如果是引用了的第三方库使用了libstdc,请更新对应的类库。

你可能感兴趣的:(xcode 10 libstdc++6.0.9 报错适配(library not found for -lstdc++.6.0.9))