libboost_python3.so.1.56.0:未定义的符号:PyClass_Type

时间:2014-08-07 17:43:05

标签: c++ python-3.x boost cmake boost-python

我正在尝试使用boost :: python库在C ++中为Python3创建一个helloWorld模块。

这是CmakeList.txt

set(Python_ADDITIONAL_VERSIONS 3.4)
find_package( PythonLibs 3.4 REQUIRED )
include_directories( ${PYTHON_INCLUDE_DIRS} )

find_package( Boost 1.56.0 EXACT COMPONENTS python3 REQUIRED )
include_directories( ${Boost_INCLUDE_DIR} )

# Define the wrapper library that wraps our library
add_library( hello SHARED main.cpp )
target_link_libraries( hello ${Boost_LIBRARIES} ${PythonLibs_LIBRARIES} )

# don't prepend wrapper library name with lib
set_target_properties( hello PROPERTIES PREFIX "" OUTPUT_NAME hello)

main.cpp

#include <boost/python.hpp>

char const* greet( )
{
    return "Hello world";
}    
BOOST_PYTHON_MODULE(mymodule)
{
    using namespace boost::python;
    def( "greet", greet );
}

我从源代码中安装了boost库,如here所述,但它不允许我使用boost-python3库(在Cmake中有错误)。为此我用了

./bootstrap.sh --with-python-version=3.4 --prefix=/usr/local

而不是

./bootstrap.sh --prefix=/usr/local

明确指定python的版本;

作为输出,我们得到一个共享库hello.so。一切似乎都没问题。但...

当我尝试将库导入到包含内容的sript.py时

import hello

在终端使用命令 ... $ python3 script.py

我收到错误

Traceback (most recent call last):
  File "script.py", line 1, in <module>
    import hello 
ImportError: /usr/local/lib/libboost_python3.so.1.56.0: undefined symbol: PyClass_Type

问题是:如何使boost库与python3兼容? python2没有问题。但我需要python3。 当发生同样的错误时我也看到了page,但它对我没有帮助。

我的软件:

  • boost version 1.56.0
  • pyhton 3.4
  • cmake version 2.8.12.2
  • gcc 4.8.2
  • 操作系统:Ubuntu 14.04 LTS,64位

1 个答案:

答案 0 :(得分:20)

answer所述:

  

PyClass_Type是Python 2 C API的一部分,不是Python 3 C API的一部分。因此,Boost.Python库可能是针对Python 2构建的。但是,它是由Python 3解释器加载的,PyClass_Type不可用。

没有提供用于生成libboost_python3.so的确切过程,因此我只能推测非干净的构建,例如使用Python2构建Boost.Python,然后使用Python3重新配置引导程序,然后构建Boost.Python Python2对象文件。无论如何,使用Python3验证Boost.Python的 clean 版本。

$ ./bootstrap.sh --with-python=/usr/bin/python2
...
Detecting Python version... 2.7
$ ./b2 --with-python --buildid=2 # produces libboost_python-2.so
$ ./bootstrap.sh --with-python=/usr/bin/python3 --with-python-root=/usr
...
Detecting Python version... 3.3
$ ./b2 --with-python --buildid=3noclean # produces libboost_python-3noclean.so
$ ./b2 --with-python --clean
$ ./b2 --with-python --buildid=3 # produces libboost_python-3.so

$ nm -D stage/lib/libboost_python-2.so | grep PyClass_Type
                 U PyClass_Type
$ nm -D stage/lib/libboost_python-3noclean.so | grep PyClass_Type
                 U PyClass_Type
$ nm -D stage/lib/libboost_python-3.so | grep PyClass_Type

正如所料,libboost_python-2.so引用了PyClass_Type符号。此外,libboost_python-3noclean.so包含对PyClass_Type的引用,因为它是使用libboost_python-2.so的目标文件构建的。使用干净的版本时,libboost_python-3.so不应包含对PyClass_Type的引用。