ImportError: /usr/lib/libboost_python.so.1.54.0: undefined symbol: PyClass_Type

百般思念 提交于 2019-11-30 05:17:41

问题


I have code written in C++:

#include <boost/python.hpp>

char const* greet()
{
  return "Yay!";
}

BOOST_PYTHON_MODULE(libtest)
{
  using namespace boost::python;
  def("greet", greet);
} 

Now i want to import this dynamic library to python by:

import libtest

But I get:

ImportError: /usr/lib/libboost_python.so.1.54.0: undefined symbol: PyClass_Type

What should I do? My OS is Arch Linux.


回答1:


Ok, I have found solution for this problem. The simplest options is to compile by:

g++ testing.cpp -I/usr/include/python3.3m -I/usr/include/boost -lboost_python3 -lpython3.3m -o testing.so -shared -fPIC

Previously I used -lboost_python instead of -lboost_python3 ... But this solution is not cross platform so we can achieve this by cmake:

cmake_minimum_required(VERSION 2.6)


find_package(Boost 1.54 EXACT REQUIRED COMPONENTS python3)

INCLUDE_DIRECTORIES(${Boost_INCLUDE_DIRS} "/usr/include/python3.3m/" )
find_package(PythonLibs)
ADD_LIBRARY(testing SHARED testing.cpp)
TARGET_LINK_LIBRARIES(testing ${Boost_LIBRARIES} ${PythonLibs_LIBRARIES})

Of course "/usr/include/python3.3m" won't be path to pythons include directory in all linux distros.




回答2:


Use the same version of Python when building both Boost.Python and the libtest module, as well as when importing libtest.

PyClass_Type is is part of the Python 2 C API and not part of the Python 3 C API. Hence, the Boost.Python library was likely built against Python 2. However, it is being loaded by a Python 3 interpreter, where the PyClass_Type is not available.



来源:https://stackoverflow.com/questions/19865757/importerror-usr-lib-libboost-python-so-1-54-0-undefined-symbol-pyclass-type

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!