为什么我的程序运行时总是提示stdc++6.0.9动态库缺失?
- 内容介绍
- 文章标签
- 相关推荐
本文共计205个文字,预计阅读时间需要1分钟。
问题:如何解决问题:ld: library not found for -lstdc++.6.0.9 clang: error: linker command failed with exit code 1 (use -v to see invocation)错误?
官方解释:Xcode更新后,不再包含这个库。可能是老代码依赖了这个库。因此,需要从Xcode 10之前的版本获取该库。
本文共计205个文字,预计阅读时间需要1分钟。
问题:如何解决问题:ld: library not found for -lstdc++.6.0.9 clang: error: linker command failed with exit code 1 (use -v to see invocation)错误?
官方解释:Xcode更新后,不再包含这个库。可能是老代码依赖了这个库。因此,需要从Xcode 10之前的版本获取该库。

