diff options
author | Pablo Galindo Salgado <Pablogsal@gmail.com> | 2024-05-05 01:07:29 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-05 01:07:29 (GMT) |
commit | 1b22d801b86ed314c4804b19a1fc4b13484e3cea (patch) | |
tree | 9cb5cea113afe83bb1ce106c565396a7bb344691 /Misc | |
parent | 999f0c512281995fb61a0d9eda075fd846e8c505 (diff) | |
download | cpython-1b22d801b86ed314c4804b19a1fc4b13484e3cea.zip cpython-1b22d801b86ed314c4804b19a1fc4b13484e3cea.tar.gz cpython-1b22d801b86ed314c4804b19a1fc4b13484e3cea.tar.bz2 |
gh-118518: Allow perf to work without frame pointers (#112254)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2024-05-02-20-32-42.gh-issue-118518.m-JbTi.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2024-05-02-20-32-42.gh-issue-118518.m-JbTi.rst b/Misc/NEWS.d/next/Core and Builtins/2024-05-02-20-32-42.gh-issue-118518.m-JbTi.rst new file mode 100644 index 0000000..7d4c003 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2024-05-02-20-32-42.gh-issue-118518.m-JbTi.rst @@ -0,0 +1,4 @@ +Allow the Linux perf support to work without frame pointers using perf's +advanced JIT support. The feature is activated when using the +``PYTHONPERFJITSUPPORT`` environment variable or when running Python with +``-Xperfjit``. Patch by Pablo Galindo |