diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2012-05-11 18:20:26 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2012-05-11 18:20:26 +0000 |
commit | 7349ff92c20df6a9f4ea3e53383d99622960d74d (patch) | |
tree | 8dcb7146e055552867a6caaf37a9f62ae24cbaa0 /gdb/NEWS | |
parent | 4723351a020971562868ce3d500be1824e820a51 (diff) | |
download | gdb-7349ff92c20df6a9f4ea3e53383d99622960d74d.zip gdb-7349ff92c20df6a9f4ea3e53383d99622960d74d.tar.gz gdb-7349ff92c20df6a9f4ea3e53383d99622960d74d.tar.bz2 |
gdb/
Implement multi-component --with-auto-load-dir.
* NEWS (set auto-load scripts-directory, --with-auto-load-dir): New
entries.
(--with-auto-load-safe-path): Update the default value description.
* auto-load.c (auto_load_dir, set_auto_load_dir, show_auto_load_dir):
New.
(auto_load_objfile_script): Add DEBUG_AUTO_LOAD output. Remove
GDB_DATADIR NULL check. Replace GDB_DATADIR/auto-load by
AUTO_LOAD_DIR. Support $ddir and multiple components in it.
(_initialize_auto_load): Initialize also auto_load_dir. Install new
"set auto-load scripts-directory".
* config.in: Regenerate.
* configure: Regenerate.
* configure.ac (--with-auto-load-dir): New configure option.
(--auto-load-safe-path): Change the default to --with-auto-load-dir.
gdb/doc/
Implement multi-component --with-auto-load-dir.
* gdb.texinfo (Auto-loading): New references
for 'set auto-load scripts-directory'
and 'show auto-load scripts-directory'.
(Auto-loading safe path): Describe the new default. Move $ddir
substituation reference to 'objfile-gdb.py file'.
(objfile-gdb.py file): Describe script-name alias. Change real-name to
script-name. Describe new 'set auto-load scripts-directory'
and 'show auto-load scripts-directory'.
Diffstat (limited to 'gdb/NEWS')
-rw-r--r-- | gdb/NEWS | 14 |
1 files changed, 12 insertions, 2 deletions
@@ -172,6 +172,12 @@ set auto-load libthread-db on|off show auto-load libthread-db Control auto-loading of inferior specific thread debugging shared library. +set auto-load scripts-directory <dir1>[:<dir2>...] + Set a list of directories from which to load auto-loaded scripts. + Automatically loaded Python scripts and GDB scripts are located in one + of the directories listed by this option. + The delimiter (':' above) may differ according to the host platform. + set auto-load safe-path <dir1>[:<dir2>...] show auto-load safe-path Set a list of directories from which it is safe to auto-load files. @@ -183,10 +189,14 @@ show debug auto-load * New configure options +--with-auto-load-dir + Configure default value for the 'set auto-load scripts-directory' + setting above. It defaults to '$ddir/auto-load', $ddir representing + GDB's data directory (available via show data-directory). + --with-auto-load-safe-path Configure default value for the 'set auto-load safe-path' setting - above. It defaults to '$ddir/auto-load', $ddir representing GDB's - data directory (available via show data-directory). + above. It defaults to the --with-auto-load-dir setting. --without-auto-load-safe-path Set 'set auto-load safe-path' to '/', effectively disabling this |