重新配置python

时间:2013-03-01 01:22:20

标签: python makefile configure compiler-flags

我使用configure --enable-sharedmakeinstall安装了Python-2.7.3。 现在,我需要重新配置以包含--with-pydebug选项。

再次运行configure时,我是否需要包含之前的所有标志? (--enable-shared)或者只使用其他标志再次configure可以吗?

1 个答案:

答案 0 :(得分:3)

configure从头开始配置构建(对缓存某些结果的支持最少)。因此,您需要提供与以前相同的所有标志。

更改配置标志时,还建议执行make distclean以确保重建所有内容。这对于--with-pydebug尤其重要,因为基本的PyObject布局会发生变化。