【C/Python联动编程】Python使用C动态库

Python首先导入模块

from ctypes import cdll
# 此模块是Python内置的不需要下载

C代码

// py_test.c
#include <stdio.h>

int py_test(int n)
{
	printf("传入参数: %d\n", n);
	printf("Python调用C动态库成功!\n");
	return 0;
}

编译

gcc py_test.c -shared -fPIC -o py_test_libc.so

完善Python代码

from ctypes import cdll
c_function = cdll.LoadLibrary("./py_test_libc.so")

res = c_function.py_test(123)

print(res)

错误排除

AttributeError: ./库文件名: undefined symbol: 函数名

不要在C代码中的函数前面带static关键字

OSError: py_test_libc.so: cannot open shared object file: No such file or directory

cdll.LoadLibrary()函数中的路径必须是绝对路径

OSError: ./py_test_libc.so: only ET_DYN and ET_EXEC can be loaded

编译语句请不要加-c

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值