1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-04 10:15:23 +02:00
tldr/pages/linux/addr2line.md

17 lines
587 B
Markdown
Raw Normal View History

2020-10-24 14:21:38 +02:00
# addr2line
> Convert addresses of a binary into file names and line numbers.
> More information: <https://manned.org/addr2line>.
2020-10-24 14:21:38 +02:00
- Display the filename and line number of the source code from an instruction address of an executable:
`addr2line {{[-e|--exe]}} {{path/to/executable}} {{address}}`
2020-10-24 14:21:38 +02:00
- Display the function name, filename and line number:
`addr2line {{[-e|--exe]}} {{path/to/executable}} {{[-f|--functions]}} {{address}}`
2020-10-24 14:21:38 +02:00
- Demangle the function name for C++ code:
`addr2line {{[-e|--exe]}} {{path/to/executable}} {{[-f|--functions]}} {{[-C|--demangle]}} {{address}}`