2020-10-24 14:21:38 +02:00
|
|
|
# addr2line
|
|
|
|
|
|
|
|
> Convert addresses of a binary into file names and line numbers.
|
2021-07-09 16:45:55 +02:00
|
|
|
> 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:
|
|
|
|
|
2025-04-27 10:57:41 +03:00
|
|
|
`addr2line {{[-e|--exe]}} {{path/to/executable}} {{address}}`
|
2020-10-24 14:21:38 +02:00
|
|
|
|
|
|
|
- Display the function name, filename and line number:
|
|
|
|
|
2025-04-27 10:57:41 +03:00
|
|
|
`addr2line {{[-e|--exe]}} {{path/to/executable}} {{[-f|--functions]}} {{address}}`
|
2020-10-24 14:21:38 +02:00
|
|
|
|
|
|
|
- Demangle the function name for C++ code:
|
|
|
|
|
2025-04-27 10:57:41 +03:00
|
|
|
`addr2line {{[-e|--exe]}} {{path/to/executable}} {{[-f|--functions]}} {{[-C|--demangle]}} {{address}}`
|