llvm-addr2line.rst 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. llvm-addr2line - a drop-in replacement for addr2line
  2. ====================================================
  3. .. program:: llvm-addr2line
  4. SYNOPSIS
  5. --------
  6. :program:`llvm-addr2line` [*options*]
  7. DESCRIPTION
  8. -----------
  9. :program:`llvm-addr2line` is an alias for the :manpage:`llvm-symbolizer(1)`
  10. tool with different defaults. The goal is to make it a drop-in replacement for
  11. GNU's :program:`addr2line`.
  12. Here are some of those differences:
  13. - Defaults not to print function names. Use `-f`_ to enable that.
  14. - Defaults not to demangle function names. Use `-C`_ to switch the
  15. demangling on.
  16. - Defaults not to print inlined frames. Use `-i`_ to show inlined
  17. frames for a source code location in an inlined function.
  18. - Uses `--output-style=GNU`_ by default.
  19. SEE ALSO
  20. --------
  21. :manpage:`llvm-symbolizer(1)`
  22. .. _-f: llvm-symbolizer.html#llvm-symbolizer-opt-f
  23. .. _-C: llvm-symbolizer.html#llvm-symbolizer-opt-c
  24. .. _-i: llvm-symbolizer.html#llvm-symbolizer-opt-i
  25. .. _--output-style=GNU: llvm-symbolizer.html#llvm-symbolizer-opt-output-style