在我的安装中,numpy的arrayobject.h
位于.../site-packages/numpy/core/include/numpy/arrayobject.h
。我编写了一个使用numpy的微不足道的Cython脚本:
cimport numpy as np
def say_hello_to(name):
print("Hello %s!" % name)
我还有以下的 distutils setup.py
(从Cython 用户指南复制):
from distutils.core import setup
from distutils.extension import Extension
from Cython.Distutils import build_ext
ext_modules = [Extension("hello", ["hello.pyx"])]
setup(
name = Hello world app ,
cmdclass = { build_ext : build_ext},
ext_modules = ext_modules
)
当我尝试使用python setup.py build_ext --inplace
构建时,Cython会尝试执行以下操作:
gcc -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd
-fno-common -dynamic -DNDEBUG -g -Os -Wall -Wstrict-prototypes -DMACOSX
-I/usr/include/ffi -DENABLE_DTRACE -arch i386 -arch ppc -pipe
-I/System/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5
-c hello.c -o build/temp.macosx-10.5-i386-2.5/hello.o
可以预见的是,这种方法无法找到arrayobject.h
。我该如何使distutils使用正确的numpy包含文件位置(而不需用户定义$CFLAGS)?