0

我的代码有问题,由于 gflags 导致错误。所以我决定手动使用 gflags 存储库和链接,这似乎是个坏主意。现在我什至无法编译 caffe。

虽然这一切都是以下命令

make all -j $(($(nproc) + 1))

我收到以下错误消息。

.build_release/tools/convert_imageset.o: In function `_GLOBAL__sub_I_convert_imageset.cpp':
convert_imageset.cpp:(.text.startup+0x74): undefined reference to `google::FlagRegisterer::FlagRegisterer<bool>(char const*, char const*, char const*, bool*, bool*)'
convert_imageset.cpp:(.text.startup+0xa3): undefined reference to `google::FlagRegisterer::FlagRegisterer<bool>(char const*, char const*, char const*, bool*, bool*)'
convert_imageset.cpp:(.text.startup+0x117): undefined reference to `google::FlagRegisterer::FlagRegisterer<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >(char const*, char const*, char const*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*)'

我在互联网上查看了一些 git 线程和其他一些线程中的一些可能的解决 方案。没有任何工作。任何形式的帮助或建议将不胜感激。

4

1 回答 1

0

该问题通过下载 gflags 包并手动安装来解决。使用以下命令:

$ tar xzf gflags-$version-source.tar.gz
$ cd gflags-$version
$ mkdir build && cd build
$ ccmake ..

  - Press 'c' to configure the build system and 'e' to ignore warnings.
  - Set CMAKE_INSTALL_PREFIX and other CMake variables and options.
  - Continue pressing 'c' until the option 'g' is available.
  - Then press 'g' to generate the configuration files for GNU Make.

$ sudo make -j4
$ sudo make test    -j4 
$ sudo make install -j4
于 2017-06-09T11:09:51.597 回答