diff options
author | Victor Stinner <vstinner@python.org> | 2024-06-18 17:35:44 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-18 17:35:44 (GMT) |
commit | 49f51deeef901b677853f00e428cbaeb13ecd2f2 (patch) | |
tree | 2c8074dae55811cd6d22b437c016711bc66223a8 /Misc/NEWS.d | |
parent | c81a5e6b5b7749862d271e7a67f89976069ad2cd (diff) | |
download | cpython-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.rst | 3 |
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. |