[issue42235] [macOS] Use --enable-optimizations in build-installer.py

2021-08-01 Thread Ned Deily
Change by Ned Deily : -- pull_requests: -24521 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue42235] [macOS] Use --enable-optimizations in build-installer.py

2021-05-10 Thread STINNER Victor
STINNER Victor added the comment: Thanks Ronald! -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue42235] [macOS] Use --enable-optimizations in build-installer.py

2021-05-02 Thread miss-islington
Change by miss-islington : -- pull_requests: +24521 pull_request: https://github.com/python/cpython/pull/25832 ___ Python tracker ___

[issue42235] [macOS] Use --enable-optimizations in build-installer.py

2021-05-02 Thread Ned Deily
Ned Deily added the comment: Thanks for the PR. I am only going to apply this to the 3.10 branch for now. Perhaps when we have more experience with it, it could be backported to 3.9.x. First appearance in 3.10.0b1. -- resolution: -> fixed stage: patch review -> resolved status:

[issue42235] [macOS] Use --enable-optimizations in build-installer.py

2021-05-02 Thread Ned Deily
Change by Ned Deily : -- pull_requests: -24519 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue42235] [macOS] Use --enable-optimizations in build-installer.py

2021-05-02 Thread Ned Deily
Change by Ned Deily : -- pull_requests: -24518 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue42235] [macOS] Use --enable-optimizations in build-installer.py

2021-05-02 Thread Ned Deily
Ned Deily added the comment: New changeset e08059edef3be07ada3058d68ad2c9cc13b7418e by Ronald Oussoren in branch 'master': bpo-42235: [macOS] Use LTO/PGO in build-installer.py with new enough compilers (GH-23079)

[issue42235] [macOS] Use --enable-optimizations in build-installer.py

2021-05-02 Thread miss-islington
Change by miss-islington : -- pull_requests: +24519 pull_request: https://github.com/python/cpython/pull/25832 ___ Python tracker ___

[issue42235] [macOS] Use --enable-optimizations in build-installer.py

2021-05-02 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 3.0 -> 4.0 pull_requests: +24518 pull_request: https://github.com/python/cpython/pull/25831 ___ Python tracker

[issue42235] [macOS] Use --enable-optimizations in build-installer.py

2020-11-01 Thread Ronald Oussoren
Change by Ronald Oussoren : -- keywords: +patch pull_requests: +21998 stage: -> patch review pull_request: https://github.com/python/cpython/pull/23079 ___ Python tracker ___

[issue42235] [macOS] Use --enable-optimizations in build-installer.py

2020-11-01 Thread Ronald Oussoren
Ronald Oussoren added the comment: I'm working on a PR. The current version of build-installer.py doesn't use LTO/PGO because installers are build on macOS 10.9 where the compiler doesn't reliably support this. Recent compilers should work a lot better. The upcoming PR enables

[issue42235] [macOS] Use --enable-optimizations in build-installer.py

2020-11-01 Thread STINNER Victor
STINNER Victor added the comment: See also bpo-41181 "[macOS] Build macOS installer with LTO and PGO optimizations". -- nosy: +vstinner ___ Python tracker ___

[issue42235] [macOS] Use --enable-optimizations in build-installer.py

2020-11-01 Thread Ronald Oussoren
New submission from Ronald Oussoren : With recent enough compilers it is possible to use --enable-optimzations when building the installer. -- messages: 380152 nosy: ronaldoussoren priority: normal severity: normal status: open title: [macOS] Use --enable-optimizations in