Matlab Kalman /usr/bin/ld: cannot find -lstdc++

久未见 提交于 2019-11-29 03:06:27

For Fedora 16 use:

sudo yum install libstdc++-static

You can soft link the library to the name that is being sought

ln -s /usr/lib/libstdc++.so.6 /usr/lib/libstdc++.so

If you're compiling a 32-bit application on a 64-bit CentOS 7:

sudo yum install libstdc++-devel.i686

i did sudo apt-get install g++-4.7 it work for me for matlab .

For CentOS, be sure you have installed gcc-c++ package (it includes libstdc++-devel dependency):

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