Posts: 1,498
Threads: 110
Joined: Aug 2013
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
Posts: 1,498
Threads: 110
Joined: Aug 2013
BUMP!?
Nobody knows how to solve this?
Posts: 1,498
Threads: 110
Joined: Aug 2013
thanks but it says already installed and latest version :/
I'm using CentOS 6 64 bit btw
(FCNPC STILL SAYS THAT ERROR)
Posts: 244
Threads: 4
Joined: Oct 2006
Reputation:
0
Compile the plugin on your server from the source code
Posts: 1,498
Threads: 110
Joined: Aug 2013
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?
Posts: 244
Threads: 4
Joined: Oct 2006
Reputation:
0
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)