GLIBCXX_3.4.15 NOT FOUND (FCNPC.SO)
#1

OK never experienced this problem this is the first time:
Code:
Failed (/usr/lib/libstdc++.so.6: version `GLIBCXX_3.4.15' not found (required by plugins/FCNPC.so))
Searched on ****** strange there's no command what so ever to download glibcxx_3.4.15 , so my question is : Do you guys know any command that downloades and fixes the error above? Thanks!!!
EDIT:Im using CentOS
Reply
#2

BUMP!?
Nobody knows how to solve this?
Reply
#3

Code:
yum install libstdc++.so.6
totally forgot op was using centos
Reply
#4

Code:
yum install libstdc++.so.6
if that doesn't work remove it via yum remove and install gcc, if you are using CentOS 6 you're going to have a outdated gcc 4.4.x so to update to a more up to date gcc do the following

devtools-2 includes gcc 4.8.x but some people have reported problems with devtools-2
Code:
wget http://people.centos.org/tru/devtools-2/devtools-2.repo -O /etc/yum.repos.d/devtools-2.repo
yum install devtoolset-2-gcc devtoolset-2-binutils devtoolset-2-gcc-c++
devtools-1.1 offers gcc 4.7.x and is considered fully stable
http://ask.xmodulo.com/upgrade-gcc-centos.html

than reinstall the libstdc++.so.6
Reply
#5

Quote:
Originally Posted by Jake187
View Post
Code:
yum install libstdc++.so.6
if that doesn't work remove it via yum remove and install gcc, if you are using CentOS 6 you're going to have a outdated gcc 4.4.x so to update to a more up to date gcc do the following

devtools-2 includes gcc 4.8.x but some people have reported problems with devtools-2
Code:
wget http://people.centos.org/tru/devtools-2/devtools-2.repo -O /etc/yum.repos.d/devtools-2.repo
yum install devtoolset-2-gcc devtoolset-2-binutils devtoolset-2-gcc-c++
devtools-1.1 offers gcc 4.7.x and is considered fully stable
http://ask.xmodulo.com/upgrade-gcc-centos.html

than reinstall the libstdc++.so.6
why suggest buying a whole packet of sweet while you can just buy one particular sweet? i know 'the more the better' line but i go with the concept of installing what's needed instead of downloading all the development tools just to get one thing to work. no qualms tho, it's better to do like what uve said
Reply
#6

Quote:
Originally Posted by Sublime
View Post
why suggest buying a whole packet of sweet while you can just buy one particular sweet? i know 'the more the better' line but i go with the concept of installing what's needed instead of downloading all the development tools just to get one thing to work. no qualms tho, it's better to do like what uve said
The gcc / devtools older version comes and doesn't come with GLIBCXX_3.4.15. The way to try to fix this is to try upgrading gcc / adding the devtools repos and reinstalling libstdc++.so.6. If that doesn't work than you need to go into troubleshooting the problem. All depending on what OS version of CentOS they're actually using.

Most of the time simply adding the devtools repo gives a updated version of libstdc++.so.6 so of course installing the newer gcc isn't normally required but some have had to install it and than got the updated libstdc++.so.6 (I haven't actually experienced this problem myself just what I read)
Reply
#7

thanks but it says already installed and latest version :/
I'm using CentOS 6 64 bit btw
(FCNPC STILL SAYS THAT ERROR)
Reply
#8

Compile the plugin on your server from the source code
Reply
#9

OK , so I've installed the newest gcc 4.7.2 but still the FCNPC shows the error :/ ?? What's wrong with it
EDIT:Weird http://prntscr.com/7p0xjr when i rebooted my VPS from the control panel , it reverted back to the old one o.O?
Reply
#10

Yep the way you're doing it isn't going to work, you're just enabled that version of gcc for the session but you're not actually trying to use gcc in this situation you're just trying to use one of the libraries that gcc has which isn't going to be put in the usual /usr/lib directory in this case.

What you'll want to do is locate libstdc++.so file from the devtoolset you installed and copy it to /usr/lib/ and then link to it with

ln -s libstdc++.so.6 libstdc++.so.6.*(whatever the file is called)
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)