swig官方学习笔记(c and python)

1 篇文章 0 订阅

跟随官方教程

 

1. 编写C文件example.c

 

 #include <time.h>
 double My_variable = 3.0;
 
 int fact(int n) {
     if (n <= 1) return 1;
     else return n*fact(n-1);
 }
 
 int my_mod(int x, int y) {
     return (x%y);
 }
 	
 char *get_time()
 {
     time_t ltime;
     time(&ltime);
     return ctime(&ltime);
 }

 

2. 编写接口文件 example.i 

 

 %module example
 %{
 /* Put header files here or function declarations like below */
 extern double My_variable;
 extern int fact(int n);
 extern int my_mod(int x, int y);
 extern char *get_time();
 %}
 
 extern double My_variable;
 extern int fact(int n);
 extern int my_mod(int x, int y);
 extern char *get_time();

 

 

3. 生成python接口文件——example.py、 example_wrap.c

swig -python example.i

4. 编译C文件 

#这里官方教程没跑成功,自己find下路径
gcc -c example.c example_wrap.c -fpic -I/home/tools/Python-2.7.9/Include/ -I/home/tools/Python-2.7.9/
ld -shared example.o example_wrap.o -o _example.so

 5. 运行

 

启动python(!!这里要使用和上面匹配的python版本)

 

 >>> import example
 >>> example.fact(5)
 120
 >>> example.my_mod(7,3)
 1

 

--end

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值