Ubuntu 上编译出现cannot find -lstdc++解决办法

前端之家收集整理的这篇文章主要介绍了Ubuntu 上编译出现cannot find -lstdc++解决办法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

Ubuntu 上编译出现cannot find -lstdc++解决办法


Ubuntu12.04 x86_64机器上编译出现下面错误,是因为找不到32bit的libstdc++.so库。

zhtang@zhtang:/opt/zhtang/IAP140/ATD_testsuite/uboot/src$ make

g++ -m32 -o serial_auto_tool serial_auto_tool.cxx
/usr/bin/ld: skipping incompatible /usr/lib/gcc/x86_64-linux-gnu/4.6/libstdc++.so when searching for -lstdc++
/usr/bin/ld: skipping incompatible /usr/lib/gcc/x86_64-linux-gnu/4.6/libstdc++.a when searching for -lstdc++
/usr/bin/ld: cannot find -lstdc++
collect2: ld returned 1 exit status
make: *** [serial_auto_tool] Error 1

解决办法:

sudo apt-get install g++-multilib

原文链接:https://www.f2er.com/ubuntu/356262.html

猜你在找的Ubuntu相关文章