Skip to content

Commit 31cde9a

Browse files
author
Magne Hov
committed
check that Python is compiled without computed gotos
1 parent 07b2b73 commit 31cde9a

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

libpython_extensions.py

+8-1
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,20 @@ def check_python_bytecode_version() -> None:
3535
"""
3636
inferior_version, debugger_version = get_python_versions()
3737
if not inferior_version.startswith(debugger_version):
38-
print(
38+
raise gdb.GdbError(
3939
f"Warning: Mismatched Python version between "
4040
f"inferior ({inferior_version}) and "
4141
f"debugger ({debugger_version}). "
4242
f"The bytecode shown might be wrong."
4343
)
4444

45+
use_computed_gotos = int(gdb.parse_and_eval("USE_COMPUTED_GOTOS"))
46+
if use_computed_gotos:
47+
raise gdb.GdbError(
48+
"Warning: The inferior Python was built with 'computed gotos'. "
49+
"Stepping bytecodes is not supported."
50+
)
51+
4552

4653
class PyDisassemble(gdb.Command):
4754
"""

0 commit comments

Comments
 (0)