diff options
| author | Glenn Morris | 2013-01-15 21:11:10 -0500 |
|---|---|---|
| committer | Glenn Morris | 2013-01-15 21:11:10 -0500 |
| commit | ecde0368523614c61d36f3b528afba34152947a3 (patch) | |
| tree | 64c0d8edf93b7f82b0dab9805eae01837efa7c85 /doc | |
| parent | f8a42ad607df01eb47ac758a1601f5a9b1673352 (diff) | |
| download | emacs-ecde0368523614c61d36f3b528afba34152947a3.tar.gz emacs-ecde0368523614c61d36f3b528afba34152947a3.zip | |
* doc/emacs/trouble.texi (Crashing): Not all addr2line have -p. (Bug#13445)
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/emacs/ChangeLog | 2 | ||||
| -rw-r--r-- | doc/emacs/trouble.texi | 5 |
2 files changed, 5 insertions, 2 deletions
diff --git a/doc/emacs/ChangeLog b/doc/emacs/ChangeLog index 16820ee450a..a50ebb7077c 100644 --- a/doc/emacs/ChangeLog +++ b/doc/emacs/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2013-01-16 Glenn Morris <rgm@gnu.org> | 1 | 2013-01-16 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * trouble.texi (Crashing): Not all addr2line have -p. (Bug#13445) | ||
| 4 | |||
| 3 | * custom.texi (Custom Themes): Fix typo. | 5 | * custom.texi (Custom Themes): Fix typo. |
| 4 | 6 | ||
| 5 | 2013-01-05 Glenn Morris <rgm@gnu.org> | 7 | 2013-01-05 Glenn Morris <rgm@gnu.org> |
diff --git a/doc/emacs/trouble.texi b/doc/emacs/trouble.texi index 1d992354c91..81014d7d0d2 100644 --- a/doc/emacs/trouble.texi +++ b/doc/emacs/trouble.texi | |||
| @@ -320,13 +320,14 @@ backtrace with source-code line numbers: | |||
| 320 | 320 | ||
| 321 | @example | 321 | @example |
| 322 | sed -n 's/.*\[\(.*\)]$/\1/p' @var{backtrace} | | 322 | sed -n 's/.*\[\(.*\)]$/\1/p' @var{backtrace} | |
| 323 | addr2line -Cfip -e @var{bindir}/emacs | 323 | addr2line -C -f -i -e @var{bindir}/emacs |
| 324 | @end example | 324 | @end example |
| 325 | 325 | ||
| 326 | @noindent | 326 | @noindent |
| 327 | Here, @var{backtrace} is the name of a text file containing a copy of | 327 | Here, @var{backtrace} is the name of a text file containing a copy of |
| 328 | the backtrace, and @var{bindir} is the name of the directory that | 328 | the backtrace, and @var{bindir} is the name of the directory that |
| 329 | contains the Emacs executable. | 329 | contains the Emacs executable.@footnote{You may wish to add the |
| 330 | @option{-p} option, if your version of @command{addr2line} supports it.} | ||
| 330 | 331 | ||
| 331 | @cindex core dump | 332 | @cindex core dump |
| 332 | Optionally, Emacs can generate a @dfn{core dump} when it crashes. A | 333 | Optionally, Emacs can generate a @dfn{core dump} when it crashes. A |