Sujet : Re: Python recompile
De : Muttley (at) *nospam* DastardlyHQ.org
Groupes : comp.lang.c comp.lang.pythonDate : 05. Mar 2025, 10:10:21
Autres entêtes
Organisation : A noiseless patient Spider
Message-ID : <vq94dt$2boso$1@dont-email.me>
References : 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
On Tue, 4 Mar 2025 18:16:25 +0000
bart <
bc@freeuk.com> wibbled:
The CPython source bundle doesn't come with any makefiles. The first
step appears to be to run a 35,000-line 'configure' script. Part of its
Frankly any build system that has a 35K configure file needs revisiting.
No package is so complex as to require that much setup. OS specific code
should be dealt with some appropriate ifdefs in the source and libraries
and linking should be a few 10s of lines.
Back in the day packages used to hve different preprepared Makefiles for
each system they could build on and IME that tended to work a lot better
than configure scripts that tried to figure things out on the fly.