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