首先参考http://blog.csdn.net/chieryu/article/details/50218763
一路安装下来,
make下来一直正常
后来出现两个错误
[root@localhost caffe-master]# make
LD -o .build_release/lib/libcaffe.so.1.0.0-rc3
/usr/bin/ld: cannot find -lcblas
collect2: ld 返回 1
make: *** [.build_release/lib/libcaffe.so.1.0.0-rc3] 错误 1
解决方法
find / -name '*cblas.so*'
找到clas.so的路径,然后复制到/usr/local/lib下:
cp /usr/lib64/atlas/libcblas.so /usr/local/lib/
后来又出现错误:
[root@localhost caffe-master]# make
LD -o .build_release/lib/libcaffe.so.1.0.0-rc3
/usr/bin/ld: cannot find -latlas
collect2: ld 返回 1
make: *** [.build_release/lib/libcaffe.so.1.0.0-rc3] 错误 1
找到atlabs.so然后复制到/usr/local/lib下。
最终make编译完成,没有报错
原文链接:https://www.f2er.com/centos/379002.html