c++ - Where can I get a copy of the file libstdc++.so.6.0.15 -
i trying fix problem "glibcxx_3.4.15" not found, documented fix. requires getting file "libstdc++.so.6.0.15" somewhere.
most of solutions tell me location compiled c++ library from. however, did not compile it, came ubuntu installation, , when "locate" file not found.
so, download somewhere, can't find on web anywhere. have tried in svn repo: svn://gcc.gnu.org/svn/gcc, not able find (its huge!)
any appreciated :) fodder
you shouldn't have manually download library, if you're on ubuntu linux, should shipped inside package :
sudo apt-get install libstdc++6
if have libstdc++6
, problem elsewhere , should explain you're trying achieve in first place.
if want newer version of libstdc++6
1 provided in default package, can try update toolchain test package :
sudo add-apt-repository ppa:ubuntu-toolchain-r/test sudo apt-get update sudo apt-get upgrade sudo apt-get dist-upgrade
otherwise have compile gcc source :
- install prerequisite (using
sudo apt-get build-dep gcc-4.7
instance) - get source gnu.org
- compile using
configure
,make
,make install
Comments
Post a Comment