Open chennbnbnb opened 2 months ago
Hi, thanks for raising the issue.
This is because LLEF doesn't currently have support for the x86_64h
target architecture.
It looks like the x86_64h
ISA is the same as x86_64
, so adding support might be as simple as adding an alias in the supported architectures list.
This can be done by adding the following on line 26 of arch/__init__.py
:
supported_arch = {
...
"x86_64h": X86_64,
...
}
I've included a git patch that contains these changes.
I haven't been able to test this as I don't have a target device to hand, so please let me know how you get on!
Hello, I have installed lldb15,
and I get the following error when using llef
How to solve this problem?