mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-25 02:53:48 +08:00
* main.c, symfile.c, source.c, exec.c, core.c: Use it for
"directory", "source", "cd", "symbol-file" "add-symbol-file", "load", "file", "exec-file", "core-file" commands.
This commit is contained in:
parent
672f4045d6
commit
df0f0dcced
@ -1,8 +1,10 @@
|
||||
Mon Jun 14 09:23:51 1993 Jim Kingdon (kingdon@cygnus.com)
|
||||
|
||||
* main.c, gdbcmd.h: Add function filename_completer.
|
||||
source.c: Use it for "directory" command.
|
||||
(This will be more useful if the word break stuff is fixed).
|
||||
* main.c, symfile.c, source.c, exec.c, core.c: Use it for
|
||||
"directory", "source", "cd", "symbol-file" "add-symbol-file",
|
||||
"load", "file", "exec-file", "core-file" commands.
|
||||
(But '/' is a word break, limiting usefulness; see comments).
|
||||
|
||||
* source.c (mod_path): Warning not error if can't find directory.
|
||||
|
||||
|
11
gdb/core.c
11
gdb/core.c
@ -25,6 +25,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
|
||||
#include "inferior.h"
|
||||
#include "symtab.h"
|
||||
#include "command.h"
|
||||
#include "gdbcmd.h"
|
||||
#include "bfd.h"
|
||||
#include "target.h"
|
||||
#include "gdbcore.h"
|
||||
@ -286,10 +287,10 @@ read_memory_unsigned_integer (memaddr, len)
|
||||
void
|
||||
_initialize_core()
|
||||
{
|
||||
|
||||
add_com ("core-file", class_files, core_file_command,
|
||||
"Use FILE as core dump for examining memory and registers.\n\
|
||||
struct cmd_list_element *c;
|
||||
c = add_cmd ("core-file", class_files, core_file_command,
|
||||
"Use FILE as core dump for examining memory and registers.\n\
|
||||
No arg means have no core file. This command has been superseded by the\n\
|
||||
`target core' and `detach' commands.");
|
||||
|
||||
`target core' and `detach' commands.", &cmdlist);
|
||||
c->completer = filename_completer;
|
||||
}
|
||||
|
14
gdb/main.c
14
gdb/main.c
@ -2478,10 +2478,11 @@ The commands below can be used to select other frames by number or address.",
|
||||
|
||||
add_com ("pwd", class_files, pwd_command,
|
||||
"Print working directory. This is used for your program as well.");
|
||||
add_com ("cd", class_files, cd_command,
|
||||
c = add_cmd ("cd", class_files, cd_command,
|
||||
"Set working directory to DIR for debugger and program being debugged.\n\
|
||||
The change does not take effect for the program being debugged\n\
|
||||
until the next time it is started.");
|
||||
until the next time it is started.", &cmdlist);
|
||||
c->completer = filename_completer;
|
||||
|
||||
add_show_from_set
|
||||
(add_set_cmd ("prompt", class_support, var_string, (char *)&prompt,
|
||||
@ -2509,17 +2510,18 @@ Use the \"document\" command to give documentation for the new command.\n\
|
||||
Commands defined in this way do not take arguments.");
|
||||
|
||||
#ifdef __STDC__
|
||||
add_com ("source", class_support, source_command,
|
||||
c = add_cmd ("source", class_support, source_command,
|
||||
"Read commands from a file named FILE.\n\
|
||||
Note that the file \"" GDBINIT_FILENAME "\" is read automatically in this way\n\
|
||||
when gdb is started.");
|
||||
when gdb is started.", &cmdlist);
|
||||
#else
|
||||
/* Punt file name, we can't help it easily. */
|
||||
add_com ("source", class_support, source_command,
|
||||
c = add_cmd ("source", class_support, source_command,
|
||||
"Read commands from a file named FILE.\n\
|
||||
Note that the file \".gdbinit\" is read automatically in this way\n\
|
||||
when gdb is started.");
|
||||
when gdb is started.", &cmdlist);
|
||||
#endif
|
||||
c->completer = filename_completer;
|
||||
|
||||
add_com ("quit", class_support, quit_command, "Exit gdb.");
|
||||
add_com ("help", class_support, help_command, "Print list of commands.");
|
||||
|
Loading…
Reference in New Issue
Block a user