您的位置:首页 > Web前端

libboost_filesystem.so: undefined reference to

2018-01-08 14:42 489 查看
caffe 编译时出现的错误:

/usr/lib64/libboost_filesystem.so: undefined reference to `boost::system::get_system_category()'
/usr/lib64/libboost_filesystem.so: undefined reference to `boost::system::get_generic_category()'


解决方案:

通过查找libboost_filesystem.so,发现/usr/lib64/下面没有这个文件,这个文件在/usr/local/lib下面。于是,在Makefile.config文件里面的最后一行,‘’-L/usr/local/lib‘’。

make clean
make -j10


问题解决。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  caffe错误
相关文章推荐