博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
objdump 用法
阅读量:4493 次
发布时间:2019-06-08

本文共 612 字,大约阅读时间需要 2 分钟。

objdump -S  a.out      反汇编!!!!!

objdump -d a.out        反汇编       

 

a@65-server:~/learn$ objdump

-p, --private-headers Display object format specific file header contents

-h, --[section-]headers Display the contents of the section headers
-x, --all-headers Display the contents of all headers
-d, --disassemble Display assembler contents of executable sections

-S, --source             Intermix source code with disassembly

 

GCC编译过程

-------------------------------------
    Pre-Processing   cpp        预处理       gcc -E  可以查看
    Compiling        ccl        编译              gcc -S  可以得到
    Assembling       as         汇编          gcc -c  进行汇编
    Linking          ld         链接

 

 

转载于:https://www.cnblogs.com/ai616818/archive/2012/06/29/2569919.html

你可能感兴趣的文章
MySQL5.7表空间加密
查看>>
iOS9 3DTouch功能实现
查看>>
C# 如何实现记住密码功能
查看>>
jquery radiobuttonlist
查看>>
判断 wp 是否是活跃页面
查看>>
some thing for wp8 development!
查看>>
iOS马甲包上架总结
查看>>
JDBC下
查看>>
第七章 路由 77 路由-使用children属性实现路由嵌套
查看>>
spring+hibernate+springmvc整合框架搭建
查看>>
监控spark-sql 等脚本
查看>>
Java基础(十二):包(package)
查看>>
java字符编码
查看>>
跨域Ajax原理以及浏览器同源策略
查看>>
Altium Designer如何设置元件自动编号解决编号冲突
查看>>
图像处理中滤波器(卷积核)
查看>>
Codeforces 178B1-B3 Greedy Merchants
查看>>
QT记录
查看>>
JavaScript 第十章总结:first class functions
查看>>
C#冒泡排序法及优化
查看>>