debuginformation
Debug information, or debuginfo, is metadata that accompanies a compiled program to relate machine code back to the original source. It records symbols such as function and variable names, types, scopes, and the mapping between code addresses and source lines. This enables source-level debugging, meaningful backtraces, and crash analysis.
In many systems debuginfo is stored in special sections inside the binary using formats like DWARF for
Debug information is typically generated by compilers when debugging options are enabled (for example, -g with
Usage and considerations: debuginfo is consumed by debuggers like GDB and LLDB, by tools that map crashes