From e4693c63ba4b881a99e762e92adebecea5df9ea1 Mon Sep 17 00:00:00 2001 From: Jannik Vogel Date: Thu, 8 Jan 2026 14:47:21 +0100 Subject: [PATCH] Fix incompatibility with Ghidra 11 --- src/ghidra2dwarf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ghidra2dwarf.py b/src/ghidra2dwarf.py index ec2df2f..440757b 100755 --- a/src/ghidra2dwarf.py +++ b/src/ghidra2dwarf.py @@ -19,7 +19,7 @@ from ghidra.program.database.data import PointerDB from ghidra.program.model.symbol import SymbolTable, SymbolType from ghidra.program.model.data import Pointer, Structure, DefaultDataType, BuiltInDataType, BooleanDataType, CharDataType, AbstractIntegerDataType, AbstractFloatDataType, AbstractComplexDataType, ArrayDataType, Array, Enum -from ghidra.app.util.bin.format.dwarf4.next import DWARFRegisterMappingsManager +from ghidra.app.util.bin.format.dwarf import DWARFRegisterMappingsManager from ghidra.util.task import ConsoleTaskMonitor from ghidra.app.util.opinion import ElfLoader from ghidra.framework import OperatingSystem