缺少Python.h头文件

时间:2012-05-16 16:23:55

标签: python c gcc header-files

我正在试图弄清楚如何在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(它是什么?)。

1 个答案:

答案 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