码迷,mamicode.com
首页 > 其他好文 > 详细

objdump常用用法

时间:2020-05-28 01:09:32      阅读:75      评论:0      收藏:0      [点我收藏+]

标签:bbr   style   com   二进制文件   bre   json   选项   使用   bug   

验证二进制文件中是否有debug信息,也即编译的时候,是否使用了“-g”选项

objdump --debugging <binary-file>

<binary-file>可以是 .o, .a, .so 可执行文件等均可

带了“-g”选项的,会有如下字样

Contents of the .debug_aranges section:

...

Contents of the .debug_info section:

...

Contents of the .debug_str section:

...

Contents of the .debug_abbrev section:

...

[admin@host-11-20-51-205 bin]$ objdump --debugging ./common/_objs/common/json_parse.pic.o | grep Contents
Contents of the .debug_info section:
Contents of the .debug_abbrev section:
Contents of the .debug_aranges section:
Contents of the .debug_ranges section:
Contents of the .debug_str section:
Contents of the .eh_frame section:

 

objdump常用用法

标签:bbr   style   com   二进制文件   bre   json   选项   使用   bug   

原文地址:https://www.cnblogs.com/anhongyu/p/12977629.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!