3

我在 main.cpp 中编写了一个非常简单的 c++ 函数:

#include <iostream>
using namespace std;

int SomeCalculation(float x){
    int decision = 0;
    if (x > 1){
        decision = 1;
    }
    return decision;
}

我现在正在尝试使用 Boost.Python 将其编译为共享库。为此我创建了decision.cpp:

#include <boost/python.hpp>
BOOST_PYTHON_MODULE(decision)
{
    using namespace boost::python;
    def("main", main);
}

不幸的是,我收到以下错误:

In file included from /usr/include/boost/python/detail/prefix.hpp:13:0,
                 from /usr/include/boost/python/args.hpp:8,
                 from /usr/include/boost/python.hpp:11,
                 from decision.cpp:1:
/usr/include/boost/python/detail/wrap_python.hpp:50:23: fatal error: pyconfig.h: File or folder does not exist.
compilation terminated.

因为我不知道这个文件可能在哪里,所以我做了一个简单的sudo find / -name pyconfig.hpyconfig.h 文件。所以我只是将我认为最通用的文件版本复制到了我正在工作的文件夹中:

cp /usr/include/python2.7/pyconfig.h /home/kram/c++/cmod/pyconfig.h

再次运行我的编译命令(g++ -fPIC -g -ggdb -c decision.cpp -o decision.so)给了我和以前一样的错误。

有人知道我如何解决这个 pyconfig.h 依赖项吗?

[编辑] 添加的代码片段

4

1 回答 1

4

试试命令:

g++ -g -shared -fPIC -I/usr/include/python2.7 decision.cpp -lpython2.7 -lboost_python -o decision.so
于 2013-06-04T09:58:15.607 回答