objdump -l -S XXX.elf > a.c
把可执行文件 XXX.elf 反汇编出文件 a.c
-S : 输出文件包含源代码
-l : (字母 L 的小写)输出文件包含文件名和行号
查询更多使用方法:objdump -H
objdump <option(s)> <file(s)> : Display information from object <file(s)>