如何为 python C++ 嵌入构建 boost 示例

Posted

技术标签:

【中文标题】如何为 python C++ 嵌入构建 boost 示例【英文标题】:How to build boost examples for python C++ embedding 【发布时间】:2015-08-13 14:55:21 【问题描述】:

Atm 我需要包装一个 C++ 库才能在 python 代码中使用。为此,我似乎最好使用 boost python 扩展/包装器。但是现在我在编译文档中显示的每个示例时一直遇到问题。我能够让它运行 python27 和 boost_1_55 的组合,但任何东西(python34 boost_1_58)似乎都不起作用。以下是构建 2 个基本示例的错误消息(我正在运行 windows7 64 位):

一般测试

C:\boost_1_59_0_b1\libs\python\example\quickstart>C:\boost_1_59_0_b1\bjam.exe toolset=msvc-12.0 --verbose-test test_ext
Performing configuration checks

- 32-bit                   : yes (cached)
- arm                      : no  (cached)
- mips1                    : no  (cached)
- power                    : no  (cached)
- sparc                    : no  (cached)
- x86                      : yes (cached)
...patience...
...patience...
...found 1923 targets...
...updating 4 targets...
msvc.link.dll bin\msvc-12.0\debug\threading-multi\extending.pyd
Creating library bin\msvc-12.0\debug\threading-multi\extending.pdb and object
bin\msvc-12.0\debug\threading-multi\extending.exp
LINK : fatal error LNK1207: incompatible PDB format in 'C:\boost_1_59_0_b1\libs\
python\example\quickstart\bin\msvc-12.0\debug\threading-multi\extending.pdb'; delete and rebuild

    call "C:\Users\XY\AppData\Local\Temp\b2_msvc_12.0_vcvarsall_x86.cmd" >nul
link /NOLOGO /INCREMENTAL:NO /DLL /NOENTRY /DEBUG /MACHINE:X86 /MANIFEST /subsystem:console /out:"bin\msvc-12.0\debug\threading-multi\extending.pyd" /IMPLIB:"bi
n\msvc-12.0\debug\threading-multi\extending.pdb" /LIBPATH:"C:\Python34\libs"   @
"bin\msvc-12.0\debug\threading-multi\extending.pyd.rsp"
    if %ERRORLEVEL% NEQ 0 EXIT %ERRORLEVEL%

...failed msvc.link.dll bin\msvc-12.0\debug\threading-multi\extending.pyd     bin\msvc-12.0\debug\threading-multi\extending.pdb...
...removing bin\msvc-12.0\debug\threading-multi\extending.pdb
...skipped <pbin\test_ext.test\msvc-12.0\debug\threading-multi>test_ext for lack
of <pbin\msvc-12.0\debug\threading-multi>extending.pyd...
...failed updating 2 targets...
...skipped 2 targets...

嵌入示例:

C:\boost_1_59_0_b1\libs\python\example\quickstart>C:\boost_1_59_0_b1\bjam.exe toolset=msvc-12.0 --verbose-test embedding
Performing configuration checks

- 32-bit                   : yes (cached)
- arm                      : no  (cached)
- mips1                    : no  (cached)
- power                    : no  (cached)
- sparc                    : no  (cached)
- x86                      : yes (cached)
...patience...
...patience...
...found 1992 targets...
...updating 3 targets...
compile-c-c++ bin\msvc-12.0\debug\threading-multi\embedding.obj
embedding.cpp
embedding.cpp(56) : error C2065: 'initembedded_hello' : undeclared identifier

call "C:\Users\XY\AppData\Local\Temp\b2_msvc_12.0_vcvarsall_x86.cm
d" >nul
cl /Zm800 -nologo @"bin\msvc-12.0\debug\threading-multi\embedding.obj.rsp"

...failed compile-c-c++ bin\msvc-12.0\debug\threading-multi\embedding.obj...
...skipped <pbin\msvc-12.0\debug\threading-multi>embedding.exe for lack of <pbin
\msvc-12.0\debug\threading-multi>embedding.obj...
...skipped <pbin\msvc-12.0\debug\threading-multi>embedding.pdb for lack of <pbin
\msvc-12.0\debug\threading-multi>embedding.obj...
...failed updating 1 target...
...skipped 2 targets...

【问题讨论】:

【参考方案1】:

我在 boost-python 教程中遇到了类似的问题。我认为原因是我没有python库的调试版本。为了解决这个问题,我将属性 variant=release 添加到我对 b2 的调用中。这解决了我的 pdb 文件不兼容的问题,尽管更好的选择是获取 python 的调试版本。不幸的是,它只会导致我进一步构建错误!

【讨论】:

好吧,我最终使用 cython 完成了这个 C++ 总结,并完全放弃了提升。 我也在考虑这样做! :)

以上是关于如何为 python C++ 嵌入构建 boost 示例的主要内容,如果未能解决你的问题,请参考以下文章

如何为 RVDS 3.0 的 Code Warrior IDE (v5.7) 构建 Boost 库?

Boost python,嵌入时从python调用c++函数

python嵌入C++,函数返回shared_ptr(pybind11/boost_python)

如何为多个 Python 版本和平台构建编译模块

如何为“类似boost”的多组件库编写cmake模块?

Boost-Python C++ 项目构建,如何使用 Python 中的新库?