Cython构建一个python脚本

时间:2016-03-30 16:12:52

标签: python cython

尝试让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

1 个答案:

答案 0 :(得分:2)

我认为问题是:

  1. Python要求函数将C模块初始化初始化为init<module_name>(您替换模块名称)。 (Python 3使用略有不同的形式)。

  2. 您已调用模块proc

  3. Cython创建了一个名为initproc的函数,在导入模块时定义。

  4. Python在内部定义了一个名为initproc的typedef,它与用于初始化模块的Cython生成的initproc冲突。

  5. 解决方案是将您的模块称为proc以外的其他模块。它不是一个理想的解决方案,但没有太多其他选择。

    Python 3选择不同形式PyInit_<module_name>的原因之一是已知Python 2表单会引起一些冲突(请参阅https://www.python.org/dev/peps/pep-3121/#entry-point-name-conflicts)。