码迷,mamicode.com
首页 > 编程语言 > 详细

Python 调用 C 语言 so

时间:2014-12-29 18:14:54      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:

$ gcc -shared -Wl,-soname,testlib -o testlib.so -fPIC testlib.c
如果在Mac OS X ,则
$ gcc -shared -Wl,-install_name,testlib.so -o testlib.so -fPIC testlib.c

 

 

import ctypes


s0 = ‘hello,www.cricode.com‘

s1 = ctypes.create_string_buffer(s0)

testlib1 = ctypes.CDLL(‘./testlib1.so‘)

testlib1.reverse(s0)

print ‘s0 is: ‘,s0

print ‘s1 is: ‘,s1.value

 

引用:http://www.cricode.com/359.html 

 

Python 调用 C 语言 so

标签:

原文地址:http://www.cnblogs.com/li-baibo/p/4192084.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!