gpt4 book ai didi

c++ - 在 Ubuntu 上使用 boost python v1.67 和 cmake 构建基本的 C++ 项目

转载 作者:太空宇宙 更新时间:2023-11-04 12:41:50 25 4
gpt4 key购买 nike

这是我第一次尝试为生产级项目编写 cmake 文件,我只是想使用 cmake 定位 boost python(v 1.67.0) 包。

我有一个非常小的 CMakeLists.txt

cmake_minimum_required(VERSION 3.13)
find_package(Boost 1.67.0 REQUIRED COMPONENTS system python37)
if(Boost_FOUND)
message("Boost_FOUND")
endif()

如果我只是尝试查找 system,它工作正常,但当我添加 python37 时失败。根据 FindBoost documentation ,我需要按照我提到的方式来提及它。这是我得到的输出:

CMake Error at /usr/share/cmake-3.13/Modules/FindBoost.cmake:2100 (message):
Unable to find the requested Boost libraries.

Boost version: 1.67.0

Boost include path: /usr/include

Could not find the following Boost libraries:

boost_python37

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:2 (find_package)


-- Configuring incomplete, errors occurred!

当我运行 $ locate libboost_python 时,我得到以下输出:

/usr/lib/x86_64-linux-gnu/libboost_python-py27.so.1.65.1
/usr/lib/x86_64-linux-gnu/libboost_python27.so.1.67.0
/usr/lib/x86_64-linux-gnu/libboost_python3-py37.so.1.65.1
/usr/lib/x86_64-linux-gnu/libboost_python37.so.1.67.0

鉴于此输出,我假设包/库存在。因此,我尝试在 CMakeLists.txt 中添加以下行:

set(BOOST_LIBRARYDIR "/usr/lib/x86_64-linux-gnu")

但是错误依旧。我在这里缺少什么?

最佳答案

看起来您缺少开发包,因为没有 /usr/lib/x86_64-linux-gnu/libboost_python27.so

修复:

apt-get install libboost-python1.67-dev 

关于c++ - 在 Ubuntu 上使用 boost python v1.67 和 cmake 构建基本的 C++ 项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53851463/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com