1

在我的 debian 发行版中,我设法使用 SWIG 在 C++ 中构建了一个 python 模块。该模块Amod可以在更复杂的 python 代码中成功导入并且工作正常。这里是在 Linux 上使用的编译:

swig -c++ -python test5.i
g++ -fPIC -c test5.cpp
g++ -fPIC -c test5_wrap.cxx -I/usr/include/python2.7
g++ -shared test5.o test5_wrap.o -o _Amod.so

但现在我想在 Windows 上重新编译它,我不确定我在做什么。

我安装了 numpy 1.7.0。和带有 g++ 的 MinGW,我在“PATH”环境变量中添加了 swig 的路径,如 SWIG 文档中所述。我还添加了我的 Python 2.7.5 安装和 Python.h 的路径。

我打开 Windows 终端并输入:

swig -c++ -Wall -python test5.i
g++ -c -Wall test5.cpp

它编译没有问题。然后

g++ -c test5_wrap.cxx 

fatal error: Python.h: no such file or directory. 我不明白,Python.h 的路径不在 PATH 变量中!?所以我输入

g++ -c test5_wrap.cxx -I C:\Python27\include

fatal error: numpy\arrayobject.h: no such file or directory. 我也不明白,这个头文件存在于C:\Python27\Lib\site-packages\numpy\core\include\numpy\. 然后我尝试了

g++ -c test5_wrap.cxx -I C:\Python27\include C:\Python27\Lib\site-packages\numpy\core\include\numpy\

同样的错误,所以我尝试了:

g++ -c test5_wrap.cxx -I C:\Python27\include C:\Python27\Lib\site-packages\numpy\core\include\numpy\arrayobject.h

给出一大堆以相同开头的错误fatal error: numpy\arrayobject.h: no such file or directory

怎么解决?MinGW + SWIG + g++ 是我的 python 模块编译的正确方向吗?

非常感谢。

调频

编辑:同时我也尝试用 distutils 用这个 setup.py 编译这个 python 模块:

# -*- coding: utf-8 -*-
"""
Created on Wed Oct 23 17:01:51 2013

@author: Florian
"""
from distutils.core import setup, Extension


Amod = Extension('_Amod',
                           sources=['test5_wrap.cxx', 'test5.cpp'],
                           )

setup (name = 'Amod',
       version = '0.1',
       author      = "FM",
       description = """Come on""",
       ext_modules = [Amod],
       py_modules = ["Amod"],
       )

并编译:

python setup.py build_ext --compiler=mingw32 --swig-opts="-c++ -I :C/Python27/include -I :C/Python27/Lib/site-packages/numpy/core/include/"

仍然是这个该死的错误:

running build_ext
building '_Amod' extension
C:\MinGW\bin\gcc.exe -mdll -O -Wall -IC:\Python27\include -IC:\Python27\PC -c test5_wrap.cxx -o build\temp.win32-2.7\Rel
ease\test5_wrap.o
test5_wrap.cxx:3045:31: fatal error: numpy/arrayobject.h: No such file or directory
 #include <numpy/arrayobject.h>

undefined reference to _imp__Py...我在谷歌上搜索了我第一次尝试时遇到的错误 ,但是人们谈论缺少链接库,我看不到我应该链接哪个库以及为什么。这有点超出我的技能了。

4

2 回答 2

1

尝试将其更改为-I C:\Python27\include -I C:\Python27\Lib\site-packages\numpy\core\include. 这些路径是必需的,因此 gcc 知道在哪里搜索包含标头。

在 *nix 环境中,gcc 在查找包含标头时可能会查找环境变量和其他隐式搜索路径,这可能就是它编译成功的原因。但是,在 windows mingw 上,您必须明确指定这些路径,以便它看起来在正确的位置。

于 2013-10-23T07:58:32.823 回答
0

在编译 c++ 代码时,我在 cygwin 中遇到了同样的问题。解决方案是安装python2-devel和python2-numpy,然后使用命令“python -m site”查看python安装目录。使用以下 find 命令定位头文件:find /usr/lib/python2.7 -name "*.h"。头文件位于目录 /usr/lib/python2.7/site-packages/numpy/core/include 下。使用 g++ 命令的以下包含选项包含此路径:-I/usr/lib/python2.7/site-packages/numpy/core/include。

于 2018-08-01T14:00:52.707 回答