Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the equivalent command for objdump in IBM AIX

Tags:

aix

objdump

I am not able to find objdump command in IBM AIX 5.1 machine. Actually I want to get the assembly instructions (disassemble) from a library generated in AIX. Linux has objdump command and solaris dis command to do this. What is the equivalent command in IBM AIX?

like image 696
rashok Avatar asked Nov 13 '22 05:11

rashok


1 Answers

You can use the dis command to disassemble object files on AIX, it should come with xlc.

It may be easier to install the GNU bintools suite to just get objdump though. Its available from the AIX linux toolbox.

like image 128
CoreyStup Avatar answered Dec 20 '22 01:12

CoreyStup