我试图用swig在test.cpp
中包装函数foo。我有一个标题foo.h
,其中包含函数foo的声明。 test.cpp
依赖于ex.h
libex.so
和共享对象文件/usr/lib64
我关注了blog post from here。
我可以使用python setup.py build_ext --inplace
构建模块。但是,当我尝试导入它时,我收到以下错误,我不确定我错过了什么,因为大多数其他问题与此错误不使用setup.py
文件。以下是我目前所拥有的一个例子。
导入_foo时出错:
>>> import _foo
ImportError: dynamic module does not define init function (init_foo)
test.i
%module foo
%{
#pragma warning(disable : 4996)
#define SWIG_FILE_WITH_INIT
#include "test.h"
%}
%include <std_vector.i>
%include <std_string.i>
%include "test.h"
TEST.CPP
#include "ex.h"
void foo(int i){
return;
};
test.h
#include "ex.h"
void foo(int i);
setup.py
try:
from setuptools.command.build_ext import build_ext
from setuptools import setup, Extension, Command
except:
from distutils.command.build_ext import build_ext
from distutils import setup, Extension, Command
foo_module = Extension('_foo',
sources=['foo.i' , 'foo.cpp'],
swig_opts=['-c++'],
library_dirs=['/usr/lib64'],
libraries=['ex'],
include_dirs = ['/usr/include'],
extra_compile_args = ['-DNDEBUG', '-DUNIX', '-D__UNIX', '-m64', '-fPIC', '-O2', '-w', '-fmessage-length=0'])
setup(name='mymodule',
ext_modules=[foo_module],
py_modules=["foo"],
)
答案 0 :(得分:4)
看起来foo
和_foo
的使用存在一些不一致,因为汇编文件是在编译和链接的情况下生成的。
尝试更改test.i
中的模块名称
%module foo
到
%module _foo
或调整setup.py
中的扩展声明
Extension('_foo',
到
Extension('foo',
答案 1 :(得分:1)
我有同样的错误,但是这是由于正在使用python。我正在使用带有python2.7,python3.4和python3.5的系统。只有“ python3”(符号为python3.5)起作用。使用任何其他python进行导入都会出现“ ImportError:动态模块未定义初始化函数”错误。