一直用的Xcode10 beta,看到APPStore已经推送了Xcode 10正式版,可能有些小伙伴也会遇到无法运行的问题
首先 暂时修改Xcode的配置
Xcode-File-Workspace Settings-Build System-legacy Build System
然后Build 会报错library not found for -l stdc++.6
这是因为 Xcode 10 取消了libstdc++ 库,如果第三方用到会找不到报错,等待第三方修复期间可以暂时先将libstdc++.6.tbd 和libstdc++.6.0.9.tbd这两个文件添加进去。文件我放到GitHub里了点这里libstdc-file
只需要将这两个文件加入到/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/usr/lib 文件夹里即可。
进入目录的方法 点击桌面-前往-前往文件夹-粘上上面的目录回车
以上。