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

/usr/bin/ld: cannot find -lhdf5_hl

我正在尝试编译 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

我该如何解决这个问题?

在您的 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

请注意,路径可能因您的OS而异。