[issue46123] _freeze_module on Windows can be built faster with no optimization

2021-12-19 Thread Steve Dower
Change by Steve Dower : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___ P

[issue46123] _freeze_module on Windows can be built faster with no optimization

2021-12-19 Thread Steve Dower
Steve Dower added the comment: New changeset 0b582a4a1b24472a35ed7fc973728ac9d595f123 by neonene in branch 'main': bpo-46123: Disable optimizations for _freeze_module.exe on MSVC for faster building (GH-30181) https://github.com/python/cpython/commit/0b582a4a1b24472a35ed7fc973728ac9d595f123

[issue46123] _freeze_module on Windows can be built faster with no optimization

2021-12-18 Thread neonene
Change by neonene : -- keywords: +patch pull_requests: +28400 stage: -> patch review pull_request: https://github.com/python/cpython/pull/30181 ___ Python tracker ___

[issue46123] _freeze_module on Windows can be built faster with no optimization

2021-12-18 Thread neonene
New submission from neonene : In Makefile.pre.in, LTO is disabled when building _freeze_module. MSVC can also cut the build time of _freeze_module.exe in half without the optimization. -- components: Build, Windows messages: 408841 nosy: neonene, paul.moore, steve.dower, tim.golden, za