error while loading shared libraries: libboost_system.so.1.45.0: cannot open shared object file: No such file or directory

。_饼干妹妹 提交于 2019-11-27 19:23:00

The library cannot be found.

Libraries are by default looked for in /lib, /usr/lib and the directories specified by /etc/ld.so.conf.

Usually system libraries (like boost, if you installed it via your package manager) are located in /usr/lib, but it's probably not your case.

Where are your boost libraries located on your system? Did you compile them by yourself? In this case you should tell the dynamic linker to look for your libraries in the directory they're located by using the LD_LIBRARY_PATH environment variable:

LD_LIBRARY_PATH="your/boost/directory" ./testfgci

I'd suggest you to install boost libraries using your package manager, anyway, this will make your life a lot simpler.

I know that this is an old one, but you can run ldconfig to rebuild your ld cache. That way you don't need to update LD_LIBRARY_PATH.

I just wanted to add a note for users of Ubuntu (and Debian, I guess): these systems have a security "feature" that erases LD_LIBRARY_PATH. This doesn't work:

In either /etc/environemnt or ~/.profile or ~/.bash_profile:

export LD_LIBRARY_PATH=/usr/local/boost_1_54_0/stage/lib:$LD_LIBRARY_PATH

It will work for ~/.bashrc, but the path will be set just for this particular interactive shell. This means that if you invoke make from e.g. emacs or eclipse, it won't work, unless you've launched emacs from the shell and not from the launcher.

This is what worked for me:

echo -e "\n/usr/local/boost_1_54_0/stage/lib" | sudo tee -a /etc/ld.so.conf 
sudo ldconfig
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!