diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2014-11-30 20:25:48 +0100 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2014-11-30 20:25:48 +0100 |
commit | f10c5b19e0d3f34cf36272bd9f038c19e6873275 (patch) | |
tree | 141bc24c401797017946460ebb50f7d3165ea75f /gdb/NEWS | |
parent | 413b59aecb4ab6b8a552d3b93a9dd7e981ab3c10 (diff) | |
download | gdb-f10c5b19e0d3f34cf36272bd9f038c19e6873275.zip gdb-f10c5b19e0d3f34cf36272bd9f038c19e6873275.tar.gz gdb-f10c5b19e0d3f34cf36272bd9f038c19e6873275.tar.bz2 |
Add add-auto-load-scripts-directory.
There is already "add-auto-load-safe-path" which works
like "set auto-load safe-path" but in append mode.
There was missing an append equivalent for "set auto-load scripts-directory".
ABRT has directory /var/cache/abrt-di/ as an alternative one
to /usr/lib/debug/ . Therefore ABRT needs to use -iex parameters to add this
/var/cache/abrt-di/ directory as a first-class debuginfo directory.
Using absolute "set auto-load scripts-directory" would hard-code the path
possibly overriding local system directory additions; besides it would not be
nice anyway.
gdb/ChangeLog
2014-11-30 Jan Kratochvil <jan.kratochvil@redhat.com>
Add add-auto-load-scripts-directory.
* NEWS (Changes since GDB 7.8): Add add-auto-load-scripts-directory.
* auto-load.c (add_auto_load_dir): New function.
(_initialize_auto_load): Install it.
gdb/doc/ChangeLog
2014-11-30 Jan Kratochvil <jan.kratochvil@redhat.com>
Add add-auto-load-scripts-directory.
* gdb.texinfo (Auto-loading): Add add-auto-load-scripts-directory link.
(objfile-gdbdotext file): Add add-auto-load-scripts-directory.
Diffstat (limited to 'gdb/NEWS')
-rw-r--r-- | gdb/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -27,6 +27,10 @@ queue-signal signal-name-or-number Queue a signal to be delivered to the thread when it is resumed. +add-auto-load-scripts-directory directory + Add entries to the list of directories from which to load auto-loaded + scripts. + * On resume, GDB now always passes the signal the program had stopped for to the thread the signal was sent to, even if the user changed threads before resuming. Previously GDB would often (but not |