本文介绍了在 CentOS 7 上找不到 GLIBCXX_3.4.21的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我最近在 CentOS 上将我的 gcc 版本从 4.7 更新到了 5.4,但是现在我在编译我的程序时收到以下错误
I recently updated my gcc version on CentOS from 4.7 to 5.4, but now I am getting the following error when I compile my program
/lib64/libstdc++.so.6: version `GLIBCXX_3.4.21' not found
我找到了一些解决方案 ,但我仍然无法解决问题.这些是我用 whereis gcc
I found some solutions , but I am still not able to fix the issue. These are the paths I found with whereis gcc
gcc: /usr/bin/gcc /usr/lib/gcc /usr/local/bin/gcc /usr/local/lib/gcc /usr/libexec/gcc /usr/share/man/man1/gcc.1.gz
并使用了这个 libstdc 用于 CentOS 的软件包.
and used this libstdc package for CentOS.
推荐答案
试试export LD_LIBRARY_PATH=/usr/local/lib:/usr/lib:/usr/local/lib64:/usr/lib64
这篇关于在 CentOS 7 上找不到 GLIBCXX_3.4.21的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!