尝试让cython运行,并在按照快速入门指南后出现此问题:
$ ~/midt $ ./setup.py build_ext --inplace
running build_ext
building 'proc' extension
x86_64-linux-gnu-gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fPIC -I/usr/include/python2.7 -c proc.c -o build/temp.linux-x86_64-2.7/proc.o
proc.c:2511:16: error: ‘initproc’ redeclared as different kind of symbol
PyMODINIT_FUNC initproc(void); /*proto*/
^
In file included from /usr/include/python2.7/Python.h:80:0,
from proc.c:16:
/usr/include/python2.7/object.h:320:15: note: previous declaration of ‘initproc’ was here
typedef int (*initproc)(PyObject *, PyObject *, PyObject *);
^
error: command 'x86_64-linux-gnu-gcc' failed with exit status 1
以下是我的版本号和内容:
$ ~/midt $ python --version
Python 2.7.6
$ ~/midt $ cython --version
Cython version 0.23.5
$ ~/midt $ uname -a
Linux xxxxx 3.13.0-37-generic #64-Ubuntu SMP Mon Sep 22 21:28:38 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux
答案 0 :(得分:2)
我认为问题是:
Python要求函数将C模块初始化初始化为init<module_name>
(您替换模块名称)。 (Python 3使用略有不同的形式)。
您已调用模块proc
。
Cython创建了一个名为initproc
的函数,在导入模块时定义。
Python在内部定义了一个名为initproc
的typedef,它与用于初始化模块的Cython生成的initproc
冲突。
解决方案是将您的模块称为proc
以外的其他模块。它不是一个理想的解决方案,但没有太多其他选择。
Python 3选择不同形式PyInit_<module_name>
的原因之一是已知Python 2表单会引起一些冲突(请参阅https://www.python.org/dev/peps/pep-3121/#entry-point-name-conflicts)。