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

我的未来我决定 提交于 2019-12-24 13:49:45

问题


I Compiled sample C++ Code using ARM CrossCompiler and generated A.out file in Linux PC. And transfered the A.out file file to ZedBoard. When I try to run the A.out file in Zedboard ,It is showing the following error,

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

Can anyone tell me the solution for the error?


回答1:


Install g++ to solve this issue.

Open a terminal and install the g++ package:

sudo apt-get install g++ 


来源:https://stackoverflow.com/questions/16482184/error-while-loading-shared-libraries-libstdc-so-6-cannot-open-shared-object

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