python调用cpp 调试_python和C++联合调试

python可以利用SO的方式去调用C++中的函数,但是需要一种调试方案来进行python和C++的联合调试,效果是直接在c++代码中打断点,然后python在进行c++so调用的时候,直接进入到断点处:

testlib.cpp

#include

using namespacestd;

PyObject* CFuncEntry(PyObject * self, PyObject *args) {

PyObject* datalist =NULL;

PyArg_ParseTuple(args,"O", &datalist);int rst = 0;for(int i=0; i < PyList_Size(datalist); ++i){int val =PyInt_AsLong(PyList_GetItem(datalist, i));

rst+=val;

}return Py_BuildValue("i", rst);

}

PyMODINIT_FUNC initCFuncEntry(void) {static PyMethodDef methods[] ={

{"CFuncEntry", (PyCFunction)CFuncEntry, METH_VARARGS, "test lib"},

{NULL, NULL,0, NULL}

};

Py_InitModule("CFuncEntry", methods);

}

call_cpp.py

#!/usr/bin/python#-*- encoding utf-8 -*-

importCFuncEntryif __name__ == "__main__":

numberlist= [1,2,3,4,5,6,7]

rst=CFuncEntry.CFuncEntry(numberlist)print rst

setup.py

from distutils.core importsetup, Extension

module1= Extension('CFuncEntry',

define_macros= [('MAJOR_VERSION', '1'),

('MINOR_VERSION', '0'),

('Py_DEBUG', 1)],

include_dirs= ['/usr/local/include'],

library_dirs= ['/usr/local/lib'],

sources= ['testlib.cpp'])

setup (name= 'PackageName',

version= '1.0',

description= 'This is a demo package',

author= 'Martin v. Loewis',

author_email= 'martin@v.loewis.de',

url= 'https://docs.python.org/extending/building',

long_description= '''This is really just a demo package.''',

ext_modules= [module1])

将setup.py和testlib.cpp放到同一个目录下,执行python setup.py install

e212f6efc100831cdad159059ff511e2.png

可以看到CFuncEntry.so已经生成,这时执行gdb –args python-dbg call_cpp.py可以进入到gdb调试模式:

619fd2a6ac365de135d1f9c777cacb07.png

74f522b68a24cb77a8c4ee2e3c8b563d.png

可能的问题:

1. python-dbg有可能没有安装,需要执行sudo apt-get install python-dbg进行安装;

2. 直接使用g++ -o CFuncEntry.so testlib.cpp -g -shared -fpic -DEBUG -lpython2.7_d 的方式生成的so会出现如下错误:

undefined symbol: Py_InitModule4_64

3. 直接用g++进行编译,生成so,需要加上Py_DEBUG参数:g++ -o CFuncEntry.so testlib.cpp -g -shared -fpic -DEBUG -lpython2.7_d -DPy_DEBUG

9d2e89d0583b68d47a9c2a3839381361.png

参考资料:

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值