diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2012-01-02 02:28:56 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2012-01-02 02:28:56 +0000 |
commit | f4880dd99e98e8d7c252c032ca6722572eb32a5f (patch) | |
tree | d64eecf125e17952155cbc5ae71a537f12be5ef2 /gdb/gdb.c | |
parent | 7e3b2d8b307393fa3e37562f027212676ce6a526 (diff) | |
download | gdb-f4880dd99e98e8d7c252c032ca6722572eb32a5f.tar.gz |
gdb/
Remove the gdbtui binary.
* .gitignore (/gdbtui): Remove.
* Makefile.in (TUI): Remove.
(SUBDIR_TUI_OBS): Remove tui-main.o.
(SUBDIR_TUI_SRCS): Remove tui/tui-main.c.
(all-tui, install-tui, uninstall-tui, $(TUI)$(EXEEXT), clean-tui)
(tui-main.o): Remove.
(all_object_files): Remove tui-main.o.
* NEWS: New note for the gdbtui removal.
* configure: Rebuilt.
* configure.ac: No longer add all-tui, clean-tui, install-tui and
uninstall-tui to CONFIG_ALL, CONFIG_CLEAN, CONFIG_INSTALL and
CONFIG_UNINSTALL respectively.
* gdb.c (main): Remove args.interpreter_p initialization.
* main.c (captured_main): Set INTERPRETER_P directly by INTERP_CONSOLE.
* main.h (struct captured_main_args): Remove interpreter_p.
* tui/tui-main.c: Remove.
gdb/doc/
Remove the gdbtui binary.
* all-cfg.texi (GDBTUI): Remove.
* gdb.texinfo (Mode Options): Remove the GDBTUI reference.
(TUI): Remove GDBTUI pindex. Remove the GDBTUI reference.
* gdbint.texinfo (Testsuite): Replace `gdbtui' by `gdb -tui'.
Diffstat (limited to 'gdb/gdb.c')
-rw-r--r-- | gdb/gdb.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gdb/gdb.c b/gdb/gdb.c index 7a708e2ff47..a74eb4c09c3 100644 --- a/gdb/gdb.c +++ b/gdb/gdb.c @@ -31,6 +31,5 @@ main (int argc, char **argv) args.argc = argc; args.argv = argv; args.use_windows = 0; - args.interpreter_p = INTERP_CONSOLE; return gdb_main (&args); } |