To find convenience, move forward from all the way.
I. arm-linux-objdump commonly used to display binary file information, commonly used to view disassembly code
Two. Common options:
1.-b Bfdname specifying the destination code format
2.-disassemble or-D disassembly executable segment
3.-dissassemble-all or -D disassembly of all segments
4.-eb,-el Specifying the byte order
5.-file-headers or-F displays the overall header summary information for the file
6.-section-headers,--headers or-H displays header summary information for each segment in the destination file
7.-info or-I display supported target file formats and CPU architectures
8.-section=name or-j name displays information for the specified section
9.-architecture=machine or -M machine specifies the schema to use when disassembling the target file
Three. Example
Arm-linux-objdump–d elf_file > dis_file #或者Arm-linux-objdump–d–b binary–m arm bin_file > Dis_file
Arm-linux-objdump