boost.python字符串与gcc 5.2.0的兼容性

时间:2018-12-21 19:57:11

标签: python c++ boost-python

需要std::string输入的函数无法通过带有gcc / 5.2.0的boost.python正确公开;而gcc 4.8.3可以正常工作。

ps。我正在使用预构建的libboost_python.so.1.63。

C ++代码

#include <boost/python.hpp>
#include <iostream>
using namespace boost::python;

void func(const std::string & hi)
{
    std::cout<<hi<<std::endl;
}

BOOST_PYTHON_MODULE(example)
{
  def("func", &func);
}

Python执行

>>> from example import *
>>> func("hi")
Boost.Python.ArgumentError: Python argument types in
    example.func(str)
did not match C++ signature:
    func(std::__cxx11::basic_string<char, std::char_traits<char>, 
std::allocator<char> >)

0 个答案:

没有答案