xcode异常
ld: library not found for -lstdc++.6.0.9
clang: error: linker command failed with exit code 1 (use -v to see invocation)
这是因为xcode中引用了libstdc++.6.0.9.tbd这个文件,而Xcode10移除了这个文件。
我们可以去Xcode9中移出该文件,路径为:
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/usr/lib/
或者去GitHub下载:libstdc++.6.0.9.tbd
然后放入上面的路径中,重新xcode就OK
参考:https://blog.csdn.net/qq_18683985/article/details/82764429