[issue37384] Compiling Python 3.7.3 from source and getting all sorts of errors on Debian?

2019-06-25 Thread Ned Deily
Ned Deily added the comment: Glad it finally worked for you. It's hard to tell at this point what went wrong originally. Perhaps there was an "unclean" build as a result of trying to fix the uuid header issue? In any case, the most recent result you posted looks fine, so unless there is

[issue37384] Compiling Python 3.7.3 from source and getting all sorts of errors on Debian?

2019-06-24 Thread Eryk
Eryk added the comment: root@Debza:/home/anubis/Python-3.7.3# ./configure --enable-optimizations checking build system type... x86_64-pc-linux-gnu checking host system type... x86_64-pc-linux-gnu checking for python3.7... python3.7 checking for --enable-universalsdk... no checking for

[issue37384] Compiling Python 3.7.3 from source and getting all sorts of errors on Debian?

2019-06-24 Thread Jelle Zijlstra
Jelle Zijlstra added the comment: As Ned and Christian hinted, the issue might be related to --enable-optimizations. Have you tried compiling without that flag? -- nosy: +Jelle Zijlstra ___ Python tracker

[issue37384] Compiling Python 3.7.3 from source and getting all sorts of errors on Debian?

2019-06-24 Thread Eryk
Eryk added the comment: yeah i managed to fix the uuid already and used: ./configure --enable-optimizations followed by make -j 4 and then using sudo make altinstall but the issue comes up during the make -j 4 process, strange thing is before using thee 'uuid' fix i mentioned and found on

[issue37384] Compiling Python 3.7.3 from source and getting all sorts of errors on Debian?

2019-06-24 Thread Ned Deily
Ned Deily added the comment: The uuid issue is described in Issue32627 and there is a PR fix for it awaiting review (PR 11751). As Christian notes, the curses issues seems to be related to some configure option. If you haven't already, suggest you start with the simplest configure

[issue37384] Compiling Python 3.7.3 from source and getting all sorts of errors on Debian?

2019-06-24 Thread Eryk
Eryk added the comment: I am unsure, the uuid issue is already solved I was just saying that before I changed the uuid module I didn't get the 'failed to build curses' error, I am unsure of the difference I guess both, basically I am trying to make it as complete of an installation as

[issue37384] Compiling Python 3.7.3 from source and getting all sorts of errors on Debian?

2019-06-24 Thread Christian Heimes
Christian Heimes added the comment: Could you please file separate issues for each problem? The curses and uuid issues are probably unrelated. The curses issue seems to be caused by a problem with C code coverage profiling. Are you trying to build Python with PGO or profiling? --

[issue37384] Compiling Python 3.7.3 from source and getting all sorts of errors on Debian?

2019-06-24 Thread Eryk
New submission from Eryk : So I am trying to compile python 3.7.3 on debian 9.9, got all the libraries installed and previously I was getting an uuid module error which was then fixed by finding this 'tweak': --- Modules/_uuidmodule.c.orig +++ Modules/_uuidmodule.c @@ -3,8 +3,7 @@ #include