忧郁者 发表于 2017-4-28 10:27:04

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

  跟随官方教程

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
页: [1]
查看完整版本: swig官方学习笔记(c and python)