当前位置:网站首页>Compile, link, notes - 3
Compile, link, notes - 3
2022-07-30 15:32:00 【wishfly】
1 readelf and objdump example detailed explanation and difference
Detailed explanation and difference between readelf and objdump examples | Code Farmers
a>- 1. readelf - view the information of the elf file
- 1. readelf command + code example detailed explanation
- 1.1 readelf -s simple.o //--symbols display the items in the symbol table section
- 1.2 readelf -h simple.o //Display the file header information at the beginning of the elf file.
- 1.3 readelf -S simple.o //Display section header information
- 1.4 readelf -a simple.o //elf displays all information
- 2. objdump - view information about object files
- 2. objdump command + code example detailed explanation
- 2.1 objdump -h simple.o //Display the header summary information of each section of the object file
- 2.2 objdump -t simple.o //Display the file's symbol table entry.
- 2.2.1 objdump -t libc.a grep -w printf //find which object file printf is in the libc.a library
- 2.3 objdump -d simple.o //-d parameter to see the disassembly result of the code segment
- 2.4 objdump -r simple.o //View the relocation table
- 2.5 objdump -f simple.o //Display the overall header summary information of each file in objfile
- 2.6 objdump -s simple.o //Display the complete content of the specified section
- 2.7 objdump -x simple.o //Display available header information
- 2.8 objdump -a simple.o //Display archives
边栏推荐
- Office Automation | Office Software and Edraw MindMaster Shortcuts
- JVM性能调优
- PyQt5快速开发与实战 9.1 使用PyInstaller打包项目生成exe文件
- MySql报错:SqlError(Unable to execute query“, “Can‘t create/write to file OS errno 2 - No such file...
- [In-depth study of 4G/5G/6G topic-46]: 5G Link Adaption Link Adaption-2-Common Abbreviations
- 闭包和装饰器
- 关于mariadb/mysql的user表:密码正确但登录失败,可能与mysql的空用户有关
- How do luxury giants such as GUCCI and LV deploy the metaverse, should other brands keep up?
- MongoDB starts an error Process: 29784 ExecStart=/usr/bin/mongod $OPTIONS (code=exited, status=14)
- 分布式限流 redission RRateLimiter 的使用及原理
猜你喜欢
随机推荐
这个编辑器居然号称快如闪电!
面试何惧调优!腾讯技术官私藏的性能优化方案手册,原理实战齐全
GUCCI、LV等奢侈品巨头如何布局元宇宙的,其他品牌应该跟上吗?
调试 - 笔记
JUC常见的线程池源码学习 02 ( ThreadPoolExecutor 线程池 )
Container sorting case
CS内网横向移动 模拟渗透实操 超详细
组态 - 笔记
Web3创始人和建设者必备指南:如何构建适合的社区?
SQL 优化这么做就对了!
Metaverse Post Office AI space-themed series of digital collections will be launched at 10:00 on July 30th "Yuanyou Digital Collection"
The use and principle of distributed current limiting reduction RRateLimiter
Flink real-time data warehouse completed
《二舅》刷屏了!
【Vue.js 3.0源码】KeepAlive 组件:如何让组件在内存中缓存和调度?
自动化办公|办公软件和亿图脑图MindMaster快捷键
【云原生】服务行业案例-不可预测的并发场景解决方案
智能合约安全——私有数据访问
分布式限流 redission RRateLimiter 的使用及原理
【元胞自动机】基于元胞自动机模拟生命演化、病毒感染等实例附matlab代码









