/usr/local/bin/clang: /lib64/libstdc++.so.6: version `GLIBCXX_3.4.26' not found (required by /usr/local/bin/clang)
时间: 2023-09-29 21:04:58 浏览: 129
64位libstdc++.so.6.0.22,解决glibcxx not found问题
4星 · 用户满意度95%
这个错误提示是因为你使用的clang编译器需要GLIBCXX_3.4.26版本的libstdc++库,但你的系统中可能没有安装这个版本的库。你可以尝试升级你的libstdc++库或者在编译时指定使用其他版本的库。具体方法可以参考以下链接:
https://stackoverflow.com/questions/56356651/error-when-compiling-c-code-version-glibcxx-3-4-26-not-found
阅读全文