aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorGlenn Morris2013-01-15 21:11:10 -0500
committerGlenn Morris2013-01-15 21:11:10 -0500
commitecde0368523614c61d36f3b528afba34152947a3 (patch)
tree64c0d8edf93b7f82b0dab9805eae01837efa7c85 /doc
parentf8a42ad607df01eb47ac758a1601f5a9b1673352 (diff)
downloademacs-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/ChangeLog2
-rw-r--r--doc/emacs/trouble.texi5
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 @@
12013-01-16 Glenn Morris <rgm@gnu.org> 12013-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
52013-01-05 Glenn Morris <rgm@gnu.org> 72013-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
322sed -n 's/.*\[\(.*\)]$/\1/p' @var{backtrace} | 322sed -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
327Here, @var{backtrace} is the name of a text file containing a copy of 327Here, @var{backtrace} is the name of a text file containing a copy of
328the backtrace, and @var{bindir} is the name of the directory that 328the backtrace, and @var{bindir} is the name of the directory that
329contains the Emacs executable. 329contains 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