Centos 7 problem (libstdc++)

Asked

Viewed 300 times

0

/lib/libstdc++.so.6: version `GLIBCXX_3.4.20' not found

I am having this error while trying to run an application on Centos 7.4 x86_64.

My attempts (based on what I found researching):

yum install libgcc.i686
yum install gcc
yum install gcc-c++.x86_64
yum install libstdc++
yum install libstdc++.i686
yum update

Versions:

libstdc++-4.8.5-16.el7_4.1.x86_64
libstdc++-4.8.5-16.el7_4.1.i686
libgcc-4.8.5-16.el7_4.1.x86_64
gcc version 4.8.5 20150623 (Red Hat 4.8.5-16) (GCC)
  • yum update -y but first install the epel repository might solve.

  • I did, but it didn’t help...

  • yum update and then yum upgrade

  • Which application you are trying to run ?

  • A plugin for game server.

1 answer

0

The list with the corresponding versions can be found here. In your case:

GCC 4.9.0: GLIBCXX_3.4.20, CXXABI_1.3.8

To check your installation, run:

strings /usr/lib/libstdc++.so.6 | grep GLIBCXX

Browser other questions tagged

You are not signed in. Login or sign up in order to post.