README 985 B

1234567891011121314151617181920212223
  1. The libbacktrace library
  2. Initially written by Ian Lance Taylor <iant@google.com>
  3. The libbacktrace library may be linked into a program or library and
  4. used to produce symbolic backtraces. Sample uses would be to print a
  5. detailed backtrace when an error occurs or to gather detailed
  6. profiling information.
  7. The libbacktrace library is provided under a BSD license. See the
  8. source files for the exact license text.
  9. The public functions are declared and documented in the header file
  10. backtrace.h, which should be #include'd by a user of the library.
  11. Building libbacktrace will generate a file backtrace-supported.h,
  12. which a user of the library may use to determine whether backtraces
  13. will work. See the source file backtrace-supported.h.in for the
  14. macros that it defines.
  15. As of September 2012, libbacktrace only supports ELF executables with
  16. DWARF debugging information. The library is written to make it
  17. straightforward to add support for other object file and debugging
  18. formats.