summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2024-06-18 17:35:44 (GMT)
committerGitHub <noreply@github.com>2024-06-18 17:35:44 (GMT)
commit49f51deeef901b677853f00e428cbaeb13ecd2f2 (patch)
tree2c8074dae55811cd6d22b437c016711bc66223a8 /Misc/NEWS.d
parentc81a5e6b5b7749862d271e7a67f89976069ad2cd (diff)
downloadcpython-49f51deeef901b677853f00e428cbaeb13ecd2f2.zip
cpython-49f51deeef901b677853f00e428cbaeb13ecd2f2.tar.gz
cpython-49f51deeef901b677853f00e428cbaeb13ecd2f2.tar.bz2
gh-120688: Build WASI with -O3 in debug mode (#120691)
On WASI in debug mode, Python is now built with compiler flag -O3 instead of -Og, to support more recursive calls.
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Build/2024-06-18-15-32-36.gh-issue-120688.tjIPLD.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Build/2024-06-18-15-32-36.gh-issue-120688.tjIPLD.rst b/Misc/NEWS.d/next/Build/2024-06-18-15-32-36.gh-issue-120688.tjIPLD.rst
new file mode 100644
index 0000000..90f1f91
--- /dev/null
+++ b/Misc/NEWS.d/next/Build/2024-06-18-15-32-36.gh-issue-120688.tjIPLD.rst
@@ -0,0 +1,3 @@
+On WASI in debug mode, Python is now built with compiler flag ``-O3``
+instead of ``-Og``, to support more recursive calls. Patch by Victor
+Stinner.