Решил заняться сабжем, изучил включение по сайту. Использую их пример:
#include <Python.h>
int main(int argc, char *argv[])
{
PyObject *pName, *pModule, *pDict, *pFunc, *pValue;
if (argc < 3)
{
printf("Usage: name python_source function_name\n");
return 1;
}
// Initialize the Python Interpreter
Py_Initialize();
// Build the name object
pName = PyString_FromString(argv[1]);
// Load the module object
pModule = PyImport_Import(pName);
// pDict is a borrowed reference
pDict = PyModule_GetDict(pModule);
// pFunc is also a borrowed reference
pFunc = PyDict_GetItemString(pDict, argv[2]);
if (PyCallable_Check(pFunc))
{
PyObject_CallObject(pFunc, NULL);
} else
{
PyErr_Print();
}
// Clean up
Py_DECREF(pModule);
Py_DECREF(pName);
// Finish the Python Interpreter
Py_Finalize();
return 0;
}
Компилирую командой:
g++ testing.cpp -I/usr/include/python2.7 -lpython2.7 -otr
Получаю сегфолт. ddd на эту тему говорит:
Program received signal SIGSEGV, Segmentation fault.
0xb7de901a in PyModule_GetDict () from /usr/lib/libpython2.7.so.1.0
(gdb)