-
Notifications
You must be signed in to change notification settings - Fork 129
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PowerPC architecture with custom plugin refuses to decompile #3
Comments
Thank you for the report.
|
Your example binary works fine. However, I realized this is a bit of a special case after all but I can make you replicate it easily. It's therefore no surprise that it's not working as of now. First, download the following plugin and place it in the Thank you! |
Yes, the binary file that you provided is indeed decompilable outside of IDA via |
inf.filetype == f_BIN || inf.filetype == f_PE || inf.filetype == f_ELF
|| inf.filetype == f_COFF || inf.filetype == f_HEX Even though input file is ELF, because I tried to solve it intelligently - find out the real file type and check if it is supported. I failed (see below). So the solution is to let all What does not work in
|
Normally I would write a regression test to check that this is solved, but since this needs a custom loader plugin, it would not be a good idea - everyone running regression tests would need it, or the test would fail. However, it works for me. I don't know, if you are able to build the |
Using
IDA Pro 6.8
, I'm trying to decompile aPowerPC
architecture function in anELF
file format with the plugin but when I pressCTRL + D
I get the following error:IDA Pro
can disassemble everything just fine and recognizes the architecture correctly as well. Can you guys please look into this problem sincePowerPC
is supposed to be supported byretdec
, yet the plugin refuses to work.The text was updated successfully, but these errors were encountered: