C++交叉编译Helloworld程序,运行显示error while loading shared libraries: libstdc++.so.6: cannot open shared object file: No such file or directory
添加--static,正常运行Helloworld
但当交叉编译关于alsa录音的.cc文件,就是只有简单的录音功能,不添加--static,添加-lasound,可以成功编译,但运行报错error while loading shared libraries: libstdc++.so.6: cannot open shared object file: No such file or directory
添加--static和-lasound,报错:cannot find -lasound
只添加--static报错找不到API函数
离线
可能文件系统里面缺 libstdc++.so.6
谢谢回答,通过-static-libstdc++解决了
离线