增加 查看动态段信息 方法.

Signed-off-by: rick.chan <chenyang@autoai.com>
This commit is contained in:
rick.chan 2021-04-13 09:51:44 +08:00
parent 507fafb0ad
commit e1bf5b3ca1
1 changed files with 4 additions and 2 deletions

View File

@ -1,6 +1,8 @@
# Readelf 基本使用
```bash
# 查看共享库符号表
readelf -s <shared library>
# 查看符号表
readelf -s <elf file>
# 查看依赖库/动态段信息
readelf -d <elf file>
```