DoubleLi

qq: 517712484 wx: ldbgliet

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::
  4737 随笔 :: 2 文章 :: 542 评论 :: 1615万 阅读
< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

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

参考资料:

posted on   DoubleLi  阅读(369)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· 单线程的Redis速度为什么快?
· SQL Server 2025 AI相关能力初探
· AI编程工具终极对决:字节Trae VS Cursor,谁才是开发者新宠?
· 展开说说关于C#中ORM框架的用法!
历史上的今天:
2019-01-30 双网卡单IP实现网卡冗余与负载均衡
2018-01-30 live555源码分析----RSTPServer创建过程分析
点击右上角即可分享
微信分享提示