CMake无法找到所需的Boost库。

3

经过数小时查看了其他人的解决方案,发现没有找到完全适合我问题的答案,因此我想请你帮我解决特定问题。:)

我正在尝试使用CMake构建vsomeip。 为此,我先前构建了boost 1.55,但是在CMake中出现以下错误:

The C compiler identification is MSVC 19.0.24215.1
The CXX compiler identification is MSVC 19.0.24215.1
Check for working C compiler: C:/Program Files (x86)/Microsoft Visua Studio 14.0/VC/bin/cl.exe
Check for working C compiler: C:/Program Files (x86)/Microsoft Visual Studio 14.0/VC/bin/cl.exe -- works
Detecting C compiler ABI info
Detecting C compiler ABI info - done
Detecting C compile features
Detecting C compile features - done
Check for working CXX compiler: C:/Program Files (x86)/Microsoft Visual Studio 14.0/VC/bin/cl.exe
Check for working CXX compiler: C:/Program Files (x86)/Microsoft Visual Studio 14.0/VC/bin/cl.exe -- works
Detecting CXX compiler ABI info
Detecting CXX compiler ABI info - done
Detecting CXX compile features
Detecting CXX compile features - done
Setting build type to 'RelWithDebInfo' as none was specified.
Looking for pthread.h
Looking for pthread.h - not found
Found Threads: TRUE  
CMake Error at C:/Program Files/CMake/share/cmake-3.12/Modules/FindBoost.cmake:2025 (message):
Unable to find the requested Boost libraries.

  Boost version: 1.55.0

  Boost include path: C:/Program Files/boost/boost_1_55_0

  Could not find the following static Boost libraries:

      boost_system
      boost_thread
      boost_log

  Some (but not all) of the required Boost libraries were found.  You may
  need to install these additional Boost libraries.  Alternatively, set
  BOOST_LIBRARYDIR to the directory containing Boost libraries or BOOST_ROOT
  to the location of Boost.
  Call Stack (most recent call first):
  CMakeLists.txt:99 (find_package)


Boost was not found!
Could NOT find PkgConfig (missing: PKG_CONFIG_EXECUTABLE) 
Systemd was not found, watchdog disabled!
using MSVC Compiler
Predefined unicast address: 127.0.0.1
Predefined diagnosis address: 0x00
Predefined routing application: vsomeipd
Could NOT find Doxygen (missing: DOXYGEN_EXECUTABLE) 
CMake Warning at CMakeLists.txt:335 (message):
Doxygen is not installed.  Documentation can not be built.


CMake Warning at CMakeLists.txt:374 (message):
  asciidoc is not installed.  Readme can not be built.


GTEST_ROOT is not defined. For building the tests the variable
             GTEST_ROOT has to be defined. Tests can not be built.
Configuring incomplete, errors occurred!
See also "D:/Desktop/BACHELORARBEIT/vsomeip/build/CMakeFiles    /CMakeOutput.log".
See also "D:/Desktop/BACHELORARBEIT/vsomeip/build/CMakeFiles/CMakeError.log".

无法找到静态Boost库。 我尝试过修改CMakeList.txt,这是应该处理链接的部分:

# Boost
set(BOOST_INCLUDE_DIR C:/Program Files/Boost/boost_1_55_0)
set(BOOST_LIBRARYDIR C:/Program Files/Boost/boost_1_55_0/stage/libs)

set(Boost_USE_STATIC_LIBS ON)
set(Boost_USE_MULTITHREADED ON)
find_package( Boost 1.55 COMPONENTS system thread log REQUIRED )
include_directories( ${Boost_INCLUDE_DIR} )

    if(Boost_FOUND)
      if(Boost_LIBRARY_DIR)
        MESSAGE( STATUS "Boost_LIBRARY_DIR not empty using it: ${Boost_LIBRARY_DIR}" )
  else()
    if(BOOST_LIBRARYDIR)
      MESSAGE( STATUS "Boost_LIBRARY_DIR empty but BOOST_LIBRARYDIR is set setting Boost_LIBRARY_DIR to: ${BOOST_LIBRARYDIR}" )
      set(Boost_LIBRARY_DIR ${BOOST_LIBRARYDIR})
    endif()
  endif()
else()
  MESSAGE( STATUS "Boost was not found!")
endif()

我也尝试过使用更新版本的boost(1.67),但结果相同。非常感谢您的帮助!

1
当在CMake中调试查找Boost时,第一步是设置Boost_DEBUG变量:set(Boost_DEBUG ON)。它将启用调试消息,描述了正在搜索的内容以及位置。 - Tsyvarev
2个回答

1

检查你编译的库是否在以下目录中:

C:/Program Files/Boost/boost_1_55_0/stage/libs

如果不是,请设置你的库文件夹路径:

set(BOOST_LIBRARYDIR path_to_lib_directory)


1
如@Tsyvarev所建议的,我使用set(Boost_DEBUG ON)来跟踪CMake正在查找的确切位置和文件,并发现了几个问题:
1.) 将路径设置为“C:/Program Files/Boost/boost_1_55_0”会导致问题,因为路径中有空格
2.) 它搜索覆盖多种格式的库,例如:
boost_thread-vc141-mt-gd-x32-1_55.lib。
然而,当我使用不正确的参数构建boost时,我的库被构建成这样:
libboost_thread-vc-mt-1_55.lib,
这不是正确的格式。
3.) 不幸的是,在构建boost时添加其他选项,例如:
b2 toolset=msvc-14.1 address-model=32 --build-type=complete
会导致其他错误。手动构建boost_1_67_0对我来说也行。

我的解决方案是简单地使用第三方下载之一(https://dl.bintray.com/boostorg/release/1.67.0/binaries/)。这样所有的库都能正确构建,我也没有遇到任何链接问题。


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