/usr/bin/ld: 找不到-lhdf5_hl。

3

我正在尝试编译caffe,在运行make all命令时,我遇到了以下链接错误:

LD -o .build_release/lib/libcaffe.so.1.0.0-rc3
/usr/bin/ld: cannot find -lhdf5_hl
/usr/bin/ld: cannot find -lhdf5
collect2: error: ld returned 1 exit status
Makefile:566: recipe for target '.build_release/lib/libcaffe.so.1.0.0-rc3' failed
make: *** [.build_release/lib/libcaffe.so.1.0.0-rc3] Error 1

我该如何解决这个问题?
1个回答

14

在您的Makefile.config中更改以下内容:

INCLUDE_DIRS := $(PYTHON_INCLUDE) /usr/local/include /usr/include/hdf5/serial

LIBRARY_DIRS := $(PYTHON_LIB) /usr/local/lib /usr/lib /usr/lib/x86_64-linux-gnu/hdf5/serial
请注意,路径可能因您的操作系统而异。

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接