This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Austin-Lamb
Recipients Austin-Lamb, paul.moore, steve.dower, tim.golden, zach.ware
Date 2021-01-04.17:42:39
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1609782160.13.0.0224895080942.issue42825@roundup.psfhosted.org>
In-reply-to
Content
I noticed that CPython and the various libraries built out of the repo aren't using the "/OPT:REF" linker optimization on Windows.  This optimization allows the linker to throw away dead/unreachable code, resulting in a substantial decrease in binary size.  That in turn also reduces the amount of Disk I/O that must be done to get these binaries in memory (which can be meaningful on spinning hard drives that are still rather common), and the reference set of applications using Python.

I'll send a PR for this shortly, just filing the issue to be able to reference it in the PR.
History
Date User Action Args
2021-01-04 17:42:40Austin-Lambsetrecipients: + Austin-Lamb, paul.moore, tim.golden, zach.ware, steve.dower
2021-01-04 17:42:40Austin-Lambsetmessageid: <1609782160.13.0.0224895080942.issue42825@roundup.psfhosted.org>
2021-01-04 17:42:40Austin-Lamblinkissue42825 messages
2021-01-04 17:42:39Austin-Lambcreate