diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2013-02-03 16:09:33 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2013-02-03 16:09:33 +0000 |
commit | 1b56eb55405f0222188073473e1ab563899424ca (patch) | |
tree | 1a79fc095fcae3d4e0a122f1384ceae7e1a9190a /gdb/doc | |
parent | aa079c9346c65921b85c75da180a887b7bd7a776 (diff) | |
download | gdb-1b56eb55405f0222188073473e1ab563899424ca.zip gdb-1b56eb55405f0222188073473e1ab563899424ca.tar.gz gdb-1b56eb55405f0222188073473e1ab563899424ca.tar.bz2 |
gdb/
Add a new variable that controls a way in which filenames are
displayed.
* NEWS (set filename-display): New entry.
* source.c (filename_display_basename, filename_display_relative)
(filename_display_absolute, filename_display_kind_names)
(filename_display_string, show_filename_display_string)
(symtab_to_filename_for_display): New.
(_initialize_source): Added initialization of 'filename-display'
variable.
* source.h (symtab_to_filename_for_display): Added declaration.
* stack.c (print_frame): Added new variable and calling of a new
function and condition with this variable. Changed third argument of
calling of a function.
gdb/doc/
* gdb.texinfo (Backtrace): Added description of 'filename-display'
variable in 'set/show backtrace' section.
gdb/testsuite/
* gdb.dwarf2/dw2-dir-file-name.exp: New file.
* gdb.dwarf2/dw2-dir-file-name.c: New file.
Diffstat (limited to 'gdb/doc')
-rw-r--r-- | gdb/doc/ChangeLog | 6 | ||||
-rw-r--r-- | gdb/doc/gdb.texinfo | 18 |
2 files changed, 24 insertions, 0 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index 1e1b2fb..62e3590 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,9 @@ +2013-02-03 Eldar Gaynetdinov <hal9000ed2k@gmail.com> + Jan Kratochvil <jan.kratochvil@redhat.com> + + * gdb.texinfo (Backtrace): Added description of 'filename-display' + variable in 'set/show backtrace' section. + 2013-01-31 Tom Tromey <tromey@redhat.com> * gdb.texinfo (Target Commands): Fix typo. diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index a8a7284..a448c97 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -6535,6 +6535,24 @@ unlimited. Display the current limit on backtrace levels. @end table +You can control how file names are displayed. + +@table @code +@item set filename-display +@itemx set filename-display relative +@cindex filename-display +Display file names relative to the compilation directory. This is the default. + +@item set filename-display basename +Display only basename of a filename. + +@item set filename-display absolute +Display an absolute filename. + +@item show filename-display +Show the current way to display filenames. +@end table + @node Selection @section Selecting a Frame |