Caffe-ssd编译错误:Makefile:570: recipe for target '.build_release/lib/libcaffe.so.1.0.0-rc3' failed

在编译Caffe-SSD时候遇到以下问题:

Makefile:570: recipe for target '.build_release/lib/libcaffe.so.1.0.0-rc3' failed

方法一:安装依赖库.

sudo apt-get install libopenblas-dev

方法二:修改Makefile 文件.

将

LIBRARIES += glog gflags protobuf boost_system boost_filesystem m hdf5_hl hdf5

改为:

LIBRARIES += glog gflags protobuf boost_system boost_filesystem m hdf5_serial_hl hdf5_serial

你可能感兴趣的:(Caffe)