首页 > 代码库 > Python 调用 C 语言 so
Python 调用 C 语言 so
$ 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
<style type="text/css" isprelink="true">@import url(http://i.cnblogs.com/Load.ashx?type=style&file=SyntaxHighlighter.css);</style><style type="text/css">@import url(/css/cuteeditor.css);</style>
Python 调用 C 语言 so
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。