mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
GH-115802: Use the GHC calling convention in JIT code (GH-118287)
This commit is contained in:
parent
beb653cc24
commit
49baa656cb
8 changed files with 117 additions and 27 deletions
|
@ -216,7 +216,7 @@ def is_unwinding_reliable():
|
|||
cflags = sysconfig.get_config_var("PY_CORE_CFLAGS")
|
||||
if not cflags:
|
||||
return False
|
||||
return "no-omit-frame-pointer" in cflags
|
||||
return "no-omit-frame-pointer" in cflags and "_Py_JIT" not in cflags
|
||||
|
||||
|
||||
def perf_command_works():
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue