[issue14030] Be more careful about selecting the compiler in distutils

2021-02-03 Thread Steve Dower
Steve Dower added the comment: Distutils is now deprecated (see PEP 632) and all tagged issues are being closed. From now until removal, only release blocking issues will be considered for distutils. If this issue does not relate to distutils, please remove the component and reopen it. If y

[issue14030] Be more careful about selecting the compiler in distutils

2013-06-17 Thread dnozay
dnozay added the comment: affects PyPy, here are the downstream issues: - https://bugs.pypy.org/issue662 - https://bugs.pypy.org/issue674 - https://bugs.pypy.org/issue1057 -- nosy: +dnozay ___ Python tracker __

[issue14030] Be more careful about selecting the compiler in distutils

2012-02-18 Thread Jesús Cea Avión
Changes by Jesús Cea Avión : -- nosy: +jcea ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue14030] Be more careful about selecting the compiler in distutils

2012-02-17 Thread Éric Araujo
Éric Araujo added the comment: > PyPy has no Makefile, so sysconfig.get_config_var("CC") returns None in PyPy. Do you think the stdlib sysconfig could be changed to make this call return something meaningful, or should the code use another method to find the compiler to use? (Getting config v

[issue14030] Be more careful about selecting the compiler in distutils

2012-02-17 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis added the comment: The bug is specific to PyPy. PyPy has no Makefile, so sysconfig.get_config_var("CC") returns None in PyPy. The first paragraph in message #153471 is about a different patch, not this patch. --

[issue14030] Be more careful about selecting the compiler in distutils

2012-02-17 Thread Éric Araujo
Éric Araujo added the comment: Could you explain more about what the bug is? -- assignee: -> eric.araujo components: +Distutils nosy: +Arfrever, eric.araujo ___ Python tracker

[issue14030] Be more careful about selecting the compiler in distutils

2012-02-16 Thread Dirkjan Ochtman
Changes by Dirkjan Ochtman : -- versions: +Python 2.7 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://ma

[issue14030] Be more careful about selecting the compiler in distutils

2012-02-16 Thread Dirkjan Ochtman
New submission from Dirkjan Ochtman : distutils incorrectly handles CFLAGS as 1 argument instead of space-separated list of arguments. distutils should respect environment variables, which set compiler, linker etc. --- Lib/distutils/unixccompiler.py +++ Lib/distutils/unixccompiler.py @@ -297,7 +