diff options
author | xdegaye <xdegaye@gmail.com> | 2018-04-20 15:03:49 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2018-04-20 15:03:49 (GMT) |
commit | 063db62aab4041ac47798e7e48b27b2f2bef21c5 (patch) | |
tree | 812aed5e501eac17d1555bd02adde4804d6a4173 /Misc | |
parent | d70c2a6894d80410b6f5a3129d6b1062ea8fd4e4 (diff) | |
download | cpython-063db62aab4041ac47798e7e48b27b2f2bef21c5.zip cpython-063db62aab4041ac47798e7e48b27b2f2bef21c5.tar.gz cpython-063db62aab4041ac47798e7e48b27b2f2bef21c5.tar.bz2 |
bpo-32232: by default, Setup modules are no longer built with -DPy_BUILD_CORE (GH-6489)
Setup modules are no longer built with -DPy_BUILD_CORE by default,
as using that flag may now require including additional internal-only header files.
Instead, only the modules that specifically need it use that setting.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Build/2018-04-17-00-38-19.bpo-32232.o7G_UO.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Build/2018-04-17-00-38-19.bpo-32232.o7G_UO.rst b/Misc/NEWS.d/next/Build/2018-04-17-00-38-19.bpo-32232.o7G_UO.rst new file mode 100644 index 0000000..fea0b60 --- /dev/null +++ b/Misc/NEWS.d/next/Build/2018-04-17-00-38-19.bpo-32232.o7G_UO.rst @@ -0,0 +1,3 @@ +By default, modules configured in `Modules/Setup` are no longer built with +`-DPy_BUILD_CORE`. Instead, modules that specifically need that preprocessor +definition include it in their individual entries. |