make 编译报错:
src/delly.h:29:42: fatal error: boost/graph/adjacency_list.hpp: No such file or directory
#include <boost/graph/adjacency_list.hpp>
解决办法:
参考:https://blog.csdn.net/chengyq116/article/details/93792943
Ubuntu:
sudo apt-get install libboost-all-dev
Centos安装boost组件:
yum install boost-devel
参考:https://blog.csdn.net/qq_21095573/article/details/85727781
网友评论