SWIG + setup.py:ImportError:动态模块没有定义init函数(init_foo)

时间:2016-03-11 19:03:27

标签: python c++ linux python-2.7 swig

我试图用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"],
      )

2 个答案:

答案 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:动态模块未定义初始化函数”错误。