编译器  arm-linux-gcc

arm-linux-gcc hello.c -o hello

  反汇编器  arm-linux-objdump

arm-linux-objdump -D -S hello
//-D, --disassemble-all Display assembler contents of all sections
//-S, --source Intermix source code with disassembly
  ELF文件查看工具  arm-linux-readelf
arm-linux-readelf -a hello 
//check the data and machine
arm-linux-readelf -d hello 
//查看hello使用的动态库 shared library

  

 

 

相关文章:

  • 2022-12-23
  • 2022-01-17
  • 2021-11-11
  • 2022-02-15
猜你喜欢
  • 2022-01-07
  • 2021-07-21
  • 2022-12-23
  • 2022-01-05
  • 2021-08-06
  • 2022-12-23
  • 2021-10-04
相关资源
相似解决方案