本文介绍了IBM AIX中objdump的等效命令是什么的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在IBM AIX 5.1机器中找不到 objdump 命令。实际上,我想从AIX中生成的库中获取汇编指令(反汇编)。 Linux具有 objdump 命令,而Solaris具有 dis 命令。在IBM AIX中等效的命令是什么?

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?

推荐答案

您可以使用命令在AIX上反汇编目标文件,它应该随xlc一起提供。

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

安装GNU bintools套件以获取objdump可能更容易。可从获得

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

这篇关于IBM AIX中objdump的等效命令是什么的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-03 19:37