Could not find a package configuration file provided by “boost_timer“

项目场景:

boost 安装完成后cmake报错:

CMake Error at /usr/lib/x86_64-linux-gnu/cmake/Boost-1.71.0/BoostConfig.cmake:117 (find_package):
  Could not find a package configuration file provided by "boost_timer"
  (requested version 1.71.0) with any of the following names:

    boost_timerConfig.cmake
    boost_timer-config.cmake

  Add the installation prefix of "boost_timer" to CMAKE_PREFIX_PATH or set
  "boost_timer_DIR" to a directory containing one of the above files.  If
  "boost_timer" provides a separate development package or SDK, be sure it
  has been installed.
Call Stack (most recent call first):
  /usr/lib/x86_64-linux-gnu/cmake/Boost-1.71.0/BoostConfig.cmake:182 (boost_find_component)
  /usr/share/cmake-3.16/Modules/FindBoost.cmake:443 (find_package)
  CMakeLists.txt:24 (find_package)


-- Configuring incomplete, errors occurred!
See also "/home/cbb/bin/maxent-master/build/CMakeFiles/CMakeOutput.log".

原因分析:

  • 缺失boost_timer这个包

解决方案:

  • 查看是否又boost_time这个包
sudo apt search boost

Could not find a package configuration file provided by “boost_timer“_第1张图片

  • 下载
sudo apt install libboost-timer1.71-dev

安装boost正确办法

sudo apt-get install libboost-dev
sudo apt install libboost-timer1.71-dev

你可能感兴趣的:(ubuntu,linux,运维,ubuntu)