/usr/lib/libstdc++.so.6: version `GLIBCXX_3.4.15#39; not found(/usr/lib/libstdc++.so.6:未找到版本“GLIBCXX_3.4.15)
问题描述
如何在 Ubuntu 中获得 GLIBCXX_3.4.15?我无法运行我正在编译的一些程序.
How can I get GLIBCXX_3.4.15 in Ubuntu? I can't run some programs that I'm compiling.
当我这样做时:
strings /usr/lib/libstdc++.so.6 | grep GLIBC
我明白了:
GLIBCXX_3.4
GLIBCXX_3.4.1
GLIBCXX_3.4.2
GLIBCXX_3.4.3
GLIBCXX_3.4.4
GLIBCXX_3.4.5
GLIBCXX_3.4.6
GLIBCXX_3.4.7
GLIBCXX_3.4.8
GLIBCXX_3.4.9
GLIBCXX_3.4.10
GLIBCXX_3.4.11
GLIBCXX_3.4.12
GLIBCXX_3.4.13
GLIBCXX_3.4.14
GLIBC_2.2.5
GLIBC_2.3
GLIBC_2.4
GLIBC_2.3.4
GLIBC_2.3.2
GLIBCXX_FORCE_NEW
GLIBCXX_DEBUG_MESSAGE_LENGTH
感谢您的帮助!
推荐答案
我正在从源代码编译 gcc 4.6,显然
I'm compiling gcc 4.6 from source, and apparently
sudo make install
没有抓住这个.我翻来覆去发现
didn't catch this one. I dug around and found
gcc/trunk/x86_64-unknown-linux-gnu/libstdc++-v3/src/.libs/libstdc++.so.6.0.15
我将它复制到/usr/lib 并重定向 libstdc++.so.6 以指向新的,现在一切正常.
I copied it in to /usr/lib and redirected libstdc++.so.6 to point to the new one, and now everything works.
这篇关于/usr/lib/libstdc++.so.6:未找到版本“GLIBCXX_3.4.15"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:/usr/lib/libstdc++.so.6:未找到版本“GLIBCXX_3.4.15"
- 使用/clr 时出现 LNK2022 错误 2022-01-01
- 近似搜索的工作原理 2021-01-01
- 如何对自定义类的向量使用std::find()? 2022-11-07
- STL 中有 dereference_iterator 吗? 2022-01-01
- C++ 协变模板 2021-01-01
- 与 int by int 相比,为什么执行 float by float 矩阵乘法更快? 2021-01-01
- 一起使用 MPI 和 OpenCV 时出现分段错误 2022-01-01
- 静态初始化顺序失败 2022-01-01
- Stroustrup 的 Simple_window.h 2022-01-01
- 从python回调到c++的选项 2022-11-16