ArchiSteamFarm V5.5. CentOS 7 libstdc++.so.6 problem #3106
-
Hello! I am using ArchiSteamFarm on CentOS Linux release 7.9.2009 (Core) After update get errors: Symlink libstdc++.so.6 > libstdc++.so.6.0.19 Return to version V5.4.13.4 it works. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 5 replies
-
Your OS is obsolete and no longer supported, as per .NET 8 compatibility notes. Upgrade to latest version of your distro, or pick another supported one. |
Beta Was this translation helpful? Give feedback.
-
I encountered the same issue and resolved it by compiling and installing gcc 6.1.0. You might want to give it a try: wget http://ftp.gnu.org/gnu/gcc/gcc-6.1.0/gcc-6.1.0.tar.bz2
cd gcc-6.1.0/
./contrib/download_prerequisites
mkdir build
cd build
../configure --enable-checking=release --enable-languages=c,c++ --disable-multilib
make && make install
cp /usr/local/lib64/libstdc++.so.6.0.22 /usr/lib64
cd /usr/lib64
rm -rf libstdc++.so.6
ln -s libstdc++.so.6.0.22 libstdc++.so.6
This solution worked for me. Feel free to give it a shot! |
Beta Was this translation helpful? Give feedback.
Your OS is obsolete and no longer supported, as per .NET 8 compatibility notes. Upgrade to latest version of your distro, or pick another supported one.