summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2022-02-01 13:47:12 (GMT)
committerGitHub <noreply@github.com>2022-02-01 13:47:12 (GMT)
commit0515eafe55ce7699e3bbc3c1555f08073d43b790 (patch)
treeb649b51226c6403f8436e7dab3fd521c83f9b455 /Misc/NEWS.d
parentb9ebde8db7e176e021103745cd012bae700828b5 (diff)
downloadcpython-0515eafe55ce7699e3bbc3c1555f08073d43b790.zip
cpython-0515eafe55ce7699e3bbc3c1555f08073d43b790.tar.gz
cpython-0515eafe55ce7699e3bbc3c1555f08073d43b790.tar.bz2
bpo-46600: ./configure --with-pydebug uses -Og with clang (GH-31052)
Fix the test checking if the C compiler supports -Og option in the ./configure script to also use -Og on clang which supports it.
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Build/2022-02-01-14-07-37.bpo-46600.NNLnfj.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Build/2022-02-01-14-07-37.bpo-46600.NNLnfj.rst b/Misc/NEWS.d/next/Build/2022-02-01-14-07-37.bpo-46600.NNLnfj.rst
new file mode 100644
index 0000000..1fab655
--- /dev/null
+++ b/Misc/NEWS.d/next/Build/2022-02-01-14-07-37.bpo-46600.NNLnfj.rst
@@ -0,0 +1,3 @@
+Fix the test checking if the C compiler supports ``-Og`` option in the
+``./configure`` script to also use ``-Og`` on clang which supports it. Patch
+by Victor Stinner.