aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objdump.md
blob: 2cd7c52bff2e5f8cafa20ba066f89f7ffd9bcaae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# objdump(1)

```markdown
  objdump [opts] <elf>
    -M intel                use intil syntax
    -d                      disassemble text section
    -D                      disassemble all sections
    -S                      mix disassembly with source code
    -C                      demangle
    -j <section>            display info for section
    --[no-]show-raw-insn    [dont] show object code next to disassembly
```

## Disassemble .plt section
```markdown
  objdump -j .plt -d <elf>
```