diff options
author | Steve Dower <steve.dower@python.org> | 2021-09-15 17:11:12 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-15 17:11:12 (GMT) |
commit | 09b4ad11f323f8702cde795e345b75e0fbb1a9a5 (patch) | |
tree | fe54816a9bcabfda7e410e5d23646c0bc8e6d9a0 /Misc | |
parent | d897579a80da3f4572d96501c41bec6cacb10d84 (diff) | |
download | cpython-09b4ad11f323f8702cde795e345b75e0fbb1a9a5.zip cpython-09b4ad11f323f8702cde795e345b75e0fbb1a9a5.tar.gz cpython-09b4ad11f323f8702cde795e345b75e0fbb1a9a5.tar.bz2 |
bpo-45188: Windows now regenerates frozen modules at the start of build instead of late (GH-28322)
This will enable us to drop the frozen module header files from the repository.
It does currently cause many source files to be built twice, which just takes more time. For whoever comes to fix this in the future, the files shared between freeze_module and pythoncore should be put into a static library that is consumed by both.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Build/2021-09-14-00-47-57.bpo-45188.MNbo_T.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Build/2021-09-14-00-47-57.bpo-45188.MNbo_T.rst b/Misc/NEWS.d/next/Build/2021-09-14-00-47-57.bpo-45188.MNbo_T.rst new file mode 100644 index 0000000..df470e8 --- /dev/null +++ b/Misc/NEWS.d/next/Build/2021-09-14-00-47-57.bpo-45188.MNbo_T.rst @@ -0,0 +1,3 @@ +Windows builds now regenerate frozen modules as the first part of the build. +Previously the regeneration was later in the build, which would require it +to be restarted if any modules had changed. |