library not found for -lboost_system

本小妞迷上赌 提交于 2019-11-30 19:21:11

You're missing a -L/opt/local/lib. You should be able to set the LDFLAGS in your Makefile:

LDFLAGS=-L/opt/local/lib

This assumes that the Boost libraries are in /opt/local/lib of course.

If you're not using the usual CXXFLAGS and LDFLAGS variables in your Makefile, then add the -L/opt/local/lib directly in your final rule:

client: client.o Packet.o
    g++ -L/opt/local/lib -o client client.o Packet.o -lboost_system

The -I only tells the compiler where header files are, the linker needs libraries and you use -L for that.

You could try to look for it in your system like this :

/sbin/ldconfig -p | grep boost_system | cut -d\> -f2

if the library is installed, then it should show something like this:

/usr/lib/x86_64-linux-gnu/libboost_system.so.1.58.0

or it will show just a blank line

In your case it seems that boost is installed in another place, hence the need for additional linker information, hence the need for the -L switch, if however you have it in /usr/lib, as I have then no need for additional info in makefile

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