I installed Python-2.7.3 with configure --enable-shared, make and install. It so happens that now, I need to reconfigure to include the --with-pydebug option.

While running configure again, do I need to include all the flags I had before? (--enable-shared) or is it okay to configure again with just the additional flags?

有帮助吗?

解决方案

configure configures the build from scratch (with minimal support for caching certain results). Therefore, you need to supply all the same flags as before.

When changing configure flags, it is also recommended to do a make distclean to ensure that everything is rebuilt. This is especially important with --with-pydebug since the basic PyObject layout will change.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top