example.h文件:
#ifndef EXAMPLE_H
#define EXAMPLE_H
class Math {
public:
int pi() const;
void pi(int pi);
private:
int _pi;
};
#endif
example.cpp :
#include "example.h"
int Math::pi() const {
return this->_pi;
}
void Math::pi(int pi) {
this->_pi = pi;
}
example.swig :
%module example
%{
#define SWIG_FILE_WITH_INIT
#include "example.h"
%}
%include "example.h"
然后我使用:
生成包装器“example.py”和“example_wrap.c”swig -python example.swig
当我尝试使用:
编译包装类时g++ -fPIC -c example.cpp example_wrap.c -I/usr/local/include/python2.6/
我收到以下错误:
example_wrap.cpp: In function "PyObject* Swig_var_Math_get()":
example_wrap.cpp:2725: error: expected primary-expression before "void"
example_wrap.cpp:2725: error: expected ")" before "void"
错误位于以下行:
pyobj = SWIG_NewPointerObj(SWIG_as_voidptr(&Math), SWIGTYPE_p_class, 0 );
#define SWIG_as_voidptr(a) (void *)((const void *)(a))
生成包装类“example_wrap.c”是否正确?
答案 0 :(得分:13)
我认为swig命令应该是“swig -c ++ -python example.swig”
答案 1 :(得分:5)
这里没有足够的信息来确定什么是错的,但我对你可以尝试的事情有两个想法。
您的g++
调用正在编译C源文件,就好像它是C ++一样。这不保证可以正常工作。尝试改为
gcc -I/usr/local/include/python2.6 -fPIC -c example_wrap.c
gcc -I/usr/local/include/python2.6 -fPIC -c example.cpp
g++ -shared example_wrap.o example.o -o example.so
(是的,srsly,只使用g ++作为链接)
如果这不起作用,请像这样编译example_wrap.c
:
gcc -I/usr/local/include/python2.6 -fPIC -c -save-temps example_wrap.c
这将以相同的方式失败,但会产生一个名为example_wrap.i
的文件,这是预处理的结果。这将是巨大的。在该文件中搜索函数Swig_var_Math_get
,并在该问题中添加该函数的完整文本(但没有其他内容)。
答案 2 :(得分:0)
感谢您的重播!
-C ++选项为包装器生成了C ++类。 swig -c ++ -v -python example.swig
我使用g ++编译包装器。
g++ -fPIC -c example.cpp example_wrap.cxx -I/usr/local/include/python2.6/
以下命令来修改共享对象。当然,我们需要删除superflous包含(-I)和库(-L)。重要的标志是'-shared'和'-fPIC'。
g++ example_wrap.o example.o -L/u01/app/oracle/product/1020.full/lib -I/usr/local/ssl/include -L/usr/local/ssl/lib -lclntsh -lssl -lcrypto -ldl -L/usr/local/lib -L/lib64 -L/usr/local/lib/python2.6/ -lboost_system -lboost_filesystem -lboost_thread -lboost_date_time -lglog -lmodpbase64 -lpthread -ldl -lrt -shared -fPIC -o _example.so