我使用Cython将.pyx
文件转换为.c
。现在,我正在尝试使用.pyd
编译器将其编译为tcc
:
C:\Users\USER>"C:\Program Files\tcc\tcc.exe" tkExtra.c -o tkExtra.pyd -
shared -IC\Python27\include -LC\Python27\libs -lpython27
然而,我收到此错误:
tkExtra.c:8: error: include file 'pyconfig.h' not found
C:\Python27\include
确实有pyconfig.h
。我查看了this answer以获取此命令行代码,仅用gcc
代替tcc
。
我该如何解决这个问题,还是有更好的方法来解决这个问题?
答案 0 :(得分:3)
好像你错过了一些冒号。尝试:
C:\Users\USER>"C:\Program Files\tcc\tcc.exe" tkExtra.c -o tkExtra.pyd -shared -IC:\Python27\include -LC:\Python27\libs -lpython27