[issue41100] Build failure on macOS 11 (beta)

2020-10-27 Thread Misty De Méo
Change by Misty De Méo : -- nosy: +mistydemeo nosy_count: 11.0 -> 12.0 pull_requests: +21922 pull_request: https://github.com/python/cpython/pull/22732 ___ Python tracker <https://bugs.python.org/issu

[issue42056] Configure on Apple ARM: "Unexpected output of 'arch' on OSX"

2020-10-16 Thread Misty De Méo
Change by Misty De Méo : -- keywords: +patch pull_requests: +21696 stage: -> patch review pull_request: https://github.com/python/cpython/pull/22732 ___ Python tracker <https://bugs.python.org/issu

[issue42056] Configure on Apple ARM: "Unexpected output of 'arch' on OSX"

2020-10-16 Thread Misty De Méo
New submission from Misty De Méo : Configure's `arch` check on Macs running with Apple Silicon CPUs will fail because the list of acceptable architectures is hardcoded to Intel and PowerPC: https://github.com/python/cpython/blob/master/configure.ac#L2486-L2496 This needs a clause that adds

[issue37285] Python 2.7 setup.py incorrectly double-joins SDKROOT

2019-06-14 Thread Misty De Méo
Change by Misty De Méo : -- keywords: +patch pull_requests: +13949 stage: -> patch review pull_request: https://github.com/python/cpython/pull/14095 ___ Python tracker <https://bugs.python.org/issu

[issue37285] Python 2.7 setup.py incorrectly double-joins SDKROOT

2019-06-14 Thread Misty De Méo
New submission from Misty De Méo : Python 2.7's setup.py has incorrect behaviour when adding the SDKROOT to the beginning of the include path while searching. When searching paths, find_file first checks is_macosx_sdk_path to see if it needs to add the sdk_root: https://github.com/python