gpt4 book ai didi

linux - RHEL7 -/usr/lib64/libstdc++.so.6 : version `CXXABI_1.3.8' not found

转载 作者:IT王子 更新时间:2023-10-29 01:20:45 24 4
gpt4 key购买 nike

我知道这个问题已经被问过很多次了,但我仍然被它困住了。我已经查看了之前提出的所有答案,例如 version `CXXABI_1.3.8' not found (required by ...)

How to fix: [program name] /usr/lib/x86_64-linux-gnu/libstdc++.so.6: version CXXABI_1.3.8' not found (required by [program name])

我读过 https://gcc.gnu.org/onlinedocs/libstdc++/faq.html#faq.how_to_set_paths

我的系统是 RHEL7,我之前安装了 gcc 4.8,我用 yum -y install devtoolset-3-gcc devtoolset-3-gcc-c++

安装了 gcc 4.9

至此gcc 4.9安装成功。使用 gcc -v,我得到

Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/opt/rh/devtoolset-3/root/usr/libexec/gcc/x86_64-redhat-linux/4.9.2/lto-wrapper
Target: x86_64-redhat-linux
Configured with: ../configure --prefix=/opt/rh/devtoolset-3/root/usr --mandir=/opt/rh/devtoolset-3/root/usr/share/man --infodir=/opt/rh/devtoolset-3/root/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --enable-multilib --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --enable-languages=c,c++,fortran,lto --enable-plugin --with-linker-hash-style=gnu --enable-initfini-array --disable-libgcj --with-isl=/builddir/build/BUILD/gcc-4.9.2-20150212/obj-x86_64-redhat-linux/isl-install --with-cloog=/builddir/build/BUILD/gcc-4.9.2-20150212/obj-x86_64-redhat-linux/cloog-install --enable-gnu-indirect-function --with-tune=generic --with-arch_32=i686 --build=x86_64-redhat-linux
Thread model: posix
gcc version 4.9.2 20150212 (Red Hat 4.9.2-6) (GCC)

然后我按照其他人的建议设置了我的LD_LIBRARY_PATH:

export LD_LIBRARY_PATH=/opt/rh/devtoolset-3/root/usr/lib/gcc/x86_64-redhat-linux/4.9.2:${LD_LIBRARY_PATH}

但是,错误仍然存​​在,而且我的新版本 gcc4.9 似乎不起作用。任何帮助,将不胜感激!

最佳答案

问题的发生是因为 devtoolset-x 包实际上只是包装了标准系统 libstdc++.so 所以即使你有一个新的编译器,你仍然有旧 ABI(应用程序二进制接口(interface))。所以你真正需要的是一个全新的编译器!其中将包含一个自己的新库。

要构建编译器,您需要安装一些依赖项:

sudo yum install gmp-devel mpfr-devel libmpc-devel

您可以下载更新版本的 GCC from one of the official mirrors , 抓取一个版本,例如 gcc-8.3.0.tar.gz,将其解压并放入该目录

./configure --disable-multilib --enable-languages=c,c++ --prefix=$HOME/local
make -j5
make -j install

然后每当您需要现代 ABI 时,

export LD_LIBRARY_PATH=$HOME/local/lib64

一切都可以开始工作了。如果您的应用程序生成自己的环境(例如 Steam),您可能希望将这些库放在它已经在搜索的路径中。

“重复”的答案要么是错误的,要么是过时的;这是今天的正确解决方案。我知道,因为我尝试了所有这些,这才是真正有效的...

关于linux - RHEL7 -/usr/lib64/libstdc++.so.6 : version `CXXABI_1.3.8' not found,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46172600/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com