我正在试图弄清楚如何在C(http://docs.python.org/extending/extending.html)中编译Python模块,但似乎缺少Python.h头文件。
我已经安装了所有python开发头文件(我有Python-dev,python2.7-dev,python2.6-dev,python-all-dev)但是gcc仍在重新编译错误:
fatal error: Python.h: No such file or directory
compilation terminated.
知道我哪里错了吗?还有一个参数我需要为Python.h添加到gcc(它是什么?)。
答案 0 :(得分:8)
您需要使用python-config
来确定编译时间和链接时间标记。
编译时:
gcc -c `python-config --cflags` somefile.c
链接时:
gcc -o libfoo.so -shared `python-config --ldflags`
虽然你真的应该考虑使用Building C and C++ Extensions with distutils
中描述的distutils