/usr/bin/ld: cannot find -l******通用解决办法

这种错误通常是在/usr/lib找不到相应的.so文件。
在系统中,或者你的安装包路径中,找到对应的.so文件,然后做一个软连接到/usr/lib即可。

labc对应的.so文件为libabc.so

ln -s 源文件路径 目标文件路径

sudo ln -s 原文件路径/bullet3-2.88/build_cm
ake/examples/OpenGLWindow/libOpenGLWindow.so /usr/lib/libOpenGLWindow.so

你可能感兴趣的:(/usr/bin/ld: cannot find -l******通用解决办法)