How can I find libstdc++.so.6?

限于喜欢 提交于 2019-12-24 23:43:58

问题


I'm trying to build Android project on my 64-bit kubuntu linux and encountered the error message:

error while loading shared libraries: libstdc++.so.6: cannot open shared object file: No such file or directory.

running apt-get install libstdc++6 told me that this library is allready installed on my machine and its up to date. Now I'm trying to find out where it is so I could update my path and tell adb where to look for it.

Tried ;/$ find libstdc++6 and which libstdc++6 and they both failed to find it.

A similar question suggests to use bash in order to find libstdc, but it implies the library is under \usr\lib which is not my case. I tried "ls \usr\lib\std* " and got "No such file or directory" as a reply.

What else should I do?

来源:https://stackoverflow.com/questions/19882644/how-can-i-find-libstdc-so-6

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!