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