]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/main.c
testsuite: Introduce gdb_assert
[thirdparty/binutils-gdb.git] / gdb / main.c
CommitLineData
c906108c 1/* Top level stuff for GDB, the GNU debugger.
4389a95a 2
ecd75fc8 3 Copyright (C) 1986-2014 Free Software Foundation, Inc.
c906108c 4
c5aa993b 5 This file is part of GDB.
c906108c 6
c5aa993b
JM
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
a9762ec7 9 the Free Software Foundation; either version 3 of the License, or
c5aa993b 10 (at your option) any later version.
c906108c 11
c5aa993b
JM
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
c906108c 16
c5aa993b 17 You should have received a copy of the GNU General Public License
a9762ec7 18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
19
20#include "defs.h"
c906108c
SS
21#include "top.h"
22#include "target.h"
23#include "inferior.h"
1adeb98a
FN
24#include "symfile.h"
25#include "gdbcore.h"
c906108c 26
60250e8b 27#include "exceptions.h"
c906108c
SS
28#include "getopt.h"
29
30#include <sys/types.h>
53ce3c39 31#include <sys/stat.h>
c906108c
SS
32#include <ctype.h>
33
0e9f083f 34#include <string.h>
9e0b60a8 35#include "event-loop.h"
8b93c638 36#include "ui-out.h"
6457bd47 37
4389a95a 38#include "interps.h"
f15ab4a7 39#include "main.h"
29b0e8a2 40#include "source.h"
4cc23ede 41#include "cli/cli-cmds.h"
7f6130ff 42#include "objfiles.h"
e2207b9a 43#include "auto-load.h"
bd712aed 44#include "maint.h"
29b0e8a2 45
b5981e5a 46#include "filenames.h"
614c279d 47#include "filestuff.h"
992c7d70 48#include <signal.h>
b5981e5a 49
4389a95a
AC
50/* The selected interpreter. This will be used as a set command
51 variable, so it should always be malloc'ed - since
371d5dec 52 do_setshow_command will free it. */
fb40c209 53char *interpreter_p;
fb40c209 54
371d5dec 55/* Whether xdb commands will be handled. */
c906108c
SS
56int xdb_commands = 0;
57
371d5dec 58/* Whether dbx commands will be handled. */
c906108c
SS
59int dbx_commands = 0;
60
030292b7
DJ
61/* System root path, used to find libraries etc. */
62char *gdb_sysroot = 0;
63
b14b1491
TT
64/* GDB datadir, used to store data files. */
65char *gdb_datadir = 0;
66
e64e0392
DE
67/* Non-zero if GDB_DATADIR was provided on the command line.
68 This doesn't track whether data-directory is set later from the
69 command line, but we don't reread system.gdbinit when that happens. */
70static int gdb_datadir_provided = 0;
71
0c4a4063
DE
72/* If gdb was configured with --with-python=/path,
73 the possibly relocated path to python's lib directory. */
74char *python_libdir = 0;
75
d9fcf2fb
JM
76struct ui_file *gdb_stdout;
77struct ui_file *gdb_stderr;
78struct ui_file *gdb_stdlog;
449092f6 79struct ui_file *gdb_stdin;
371d5dec 80/* Target IO streams. */
449092f6 81struct ui_file *gdb_stdtargin;
22e8e3c7 82struct ui_file *gdb_stdtarg;
449092f6 83struct ui_file *gdb_stdtargerr;
c906108c 84
7c953934
TT
85/* True if --batch or --batch-silent was seen. */
86int batch_flag = 0;
87
1a088d06
AS
88/* Support for the --batch-silent option. */
89int batch_silent = 0;
90
4b0ad762
AS
91/* Support for --return-child-result option.
92 Set the default to -1 to return error in the case
93 that the program does not run or does not complete. */
94int return_child_result = 0;
95int return_child_result_value = -1;
96
c906108c 97
16e7150e
JG
98/* GDB as it has been invoked from the command line (i.e. argv[0]). */
99static char *gdb_program_name;
100
c88a1531
AB
101/* Return read only pointer to GDB_PROGRAM_NAME. */
102const char *
103get_gdb_program_name (void)
104{
105 return gdb_program_name;
106}
107
d9fcf2fb 108static void print_gdb_help (struct ui_file *);
c906108c 109
8d551b02
DE
110/* Set the data-directory parameter to NEW_DATADIR.
111 If NEW_DATADIR is not a directory then a warning is printed.
112 We don't signal an error for backward compatibility. */
113
114void
115set_gdb_data_directory (const char *new_datadir)
116{
117 struct stat st;
118
119 if (stat (new_datadir, &st) < 0)
120 {
121 int save_errno = errno;
122
123 fprintf_unfiltered (gdb_stderr, "Warning: ");
124 print_sys_errmsg (new_datadir, save_errno);
125 }
126 else if (!S_ISDIR (st.st_mode))
127 warning (_("%s is not a directory."), new_datadir);
128
129 xfree (gdb_datadir);
130 gdb_datadir = gdb_realpath (new_datadir);
131
132 /* gdb_realpath won't return an absolute path if the path doesn't exist,
133 but we still want to record an absolute path here. If the user entered
134 "../foo" and "../foo" doesn't exist then we'll record $(pwd)/../foo which
135 isn't canonical, but that's ok. */
136 if (!IS_ABSOLUTE_PATH (gdb_datadir))
137 {
138 char *abs_datadir = gdb_abspath (gdb_datadir);
139
140 xfree (gdb_datadir);
141 gdb_datadir = abs_datadir;
142 }
143}
144
b14b1491
TT
145/* Relocate a file or directory. PROGNAME is the name by which gdb
146 was invoked (i.e., argv[0]). INITIAL is the default value for the
147 file or directory. FLAG is true if the value is relocatable, false
148 otherwise. Returns a newly allocated string; this may return NULL
149 under the same conditions as make_relative_prefix. */
478aac75 150
b14b1491
TT
151static char *
152relocate_path (const char *progname, const char *initial, int flag)
153{
154 if (flag)
155 return make_relative_prefix (progname, BINDIR, initial);
156 return xstrdup (initial);
157}
158
159/* Like relocate_path, but specifically checks for a directory.
160 INITIAL is relocated according to the rules of relocate_path. If
161 the result is a directory, it is used; otherwise, INITIAL is used.
162 The chosen directory is then canonicalized using lrealpath. This
163 function always returns a newly-allocated string. */
478aac75
DE
164
165char *
166relocate_gdb_directory (const char *initial, int flag)
b14b1491
TT
167{
168 char *dir;
169
478aac75 170 dir = relocate_path (gdb_program_name, initial, flag);
b14b1491
TT
171 if (dir)
172 {
173 struct stat s;
174
78a8b30e 175 if (*dir == '\0' || stat (dir, &s) != 0 || !S_ISDIR (s.st_mode))
b14b1491
TT
176 {
177 xfree (dir);
178 dir = NULL;
179 }
180 }
181 if (!dir)
182 dir = xstrdup (initial);
183
184 /* Canonicalize the directory. */
185 if (*dir)
186 {
187 char *canon_sysroot = lrealpath (dir);
b8d56208 188
b14b1491
TT
189 if (canon_sysroot)
190 {
191 xfree (dir);
192 dir = canon_sysroot;
193 }
194 }
195
196 return dir;
197}
198
371d5dec
MS
199/* Compute the locations of init files that GDB should source and
200 return them in SYSTEM_GDBINIT, HOME_GDBINIT, LOCAL_GDBINIT. If
201 there is no system gdbinit (resp. home gdbinit and local gdbinit)
202 to be loaded, then SYSTEM_GDBINIT (resp. HOME_GDBINIT and
203 LOCAL_GDBINIT) is set to NULL. */
16e7150e 204static void
50dd9793
PA
205get_init_files (const char **system_gdbinit,
206 const char **home_gdbinit,
207 const char **local_gdbinit)
16e7150e 208{
50dd9793 209 static const char *sysgdbinit = NULL;
16e7150e 210 static char *homeinit = NULL;
50dd9793 211 static const char *localinit = NULL;
16e7150e
JG
212 static int initialized = 0;
213
214 if (!initialized)
215 {
216 struct stat homebuf, cwdbuf, s;
e64e0392 217 char *homedir;
16e7150e 218
b14b1491 219 if (SYSTEM_GDBINIT[0])
16e7150e 220 {
e64e0392
DE
221 int datadir_len = strlen (GDB_DATADIR);
222 int sys_gdbinit_len = strlen (SYSTEM_GDBINIT);
223 char *relocated_sysgdbinit;
224
225 /* If SYSTEM_GDBINIT lives in data-directory, and data-directory
226 has been provided, search for SYSTEM_GDBINIT there. */
227 if (gdb_datadir_provided
228 && datadir_len < sys_gdbinit_len
b5981e5a
EZ
229 && filename_ncmp (SYSTEM_GDBINIT, GDB_DATADIR, datadir_len) == 0
230 && IS_DIR_SEPARATOR (SYSTEM_GDBINIT[datadir_len]))
e64e0392
DE
231 {
232 /* Append the part of SYSTEM_GDBINIT that follows GDB_DATADIR
233 to gdb_datadir. */
234 char *tmp_sys_gdbinit = xstrdup (SYSTEM_GDBINIT + datadir_len);
235 char *p;
236
b5981e5a 237 for (p = tmp_sys_gdbinit; IS_DIR_SEPARATOR (*p); ++p)
e64e0392
DE
238 continue;
239 relocated_sysgdbinit = concat (gdb_datadir, SLASH_STRING, p,
240 NULL);
241 xfree (tmp_sys_gdbinit);
242 }
243 else
244 {
245 relocated_sysgdbinit = relocate_path (gdb_program_name,
246 SYSTEM_GDBINIT,
247 SYSTEM_GDBINIT_RELOCATABLE);
248 }
b14b1491 249 if (relocated_sysgdbinit && stat (relocated_sysgdbinit, &s) == 0)
16e7150e
JG
250 sysgdbinit = relocated_sysgdbinit;
251 else
252 xfree (relocated_sysgdbinit);
253 }
16e7150e
JG
254
255 homedir = getenv ("HOME");
256
257 /* If the .gdbinit file in the current directory is the same as
258 the $HOME/.gdbinit file, it should not be sourced. homebuf
025bb325 259 and cwdbuf are used in that purpose. Make sure that the stats
16e7150e
JG
260 are zero in case one of them fails (this guarantees that they
261 won't match if either exists). */
262
263 memset (&homebuf, 0, sizeof (struct stat));
264 memset (&cwdbuf, 0, sizeof (struct stat));
265
266 if (homedir)
267 {
268 homeinit = xstrprintf ("%s/%s", homedir, gdbinit);
269 if (stat (homeinit, &homebuf) != 0)
270 {
271 xfree (homeinit);
272 homeinit = NULL;
273 }
274 }
275
276 if (stat (gdbinit, &cwdbuf) == 0)
277 {
278 if (!homeinit
279 || memcmp ((char *) &homebuf, (char *) &cwdbuf,
280 sizeof (struct stat)))
281 localinit = gdbinit;
282 }
283
284 initialized = 1;
285 }
286
287 *system_gdbinit = sysgdbinit;
288 *home_gdbinit = homeinit;
289 *local_gdbinit = localinit;
290}
291
992c7d70
GB
292/* Try to set up an alternate signal stack for SIGSEGV handlers.
293 This allows us to handle SIGSEGV signals generated when the
294 normal process stack is exhausted. If this stack is not set
295 up (sigaltstack is unavailable or fails) and a SIGSEGV is
296 generated when the normal stack is exhausted then the program
297 will behave as though no SIGSEGV handler was installed. */
298
299static void
300setup_alternate_signal_stack (void)
301{
302#ifdef HAVE_SIGALTSTACK
303 stack_t ss;
304
305 ss.ss_sp = xmalloc (SIGSTKSZ);
306 ss.ss_size = SIGSTKSZ;
307 ss.ss_flags = 0;
308
309 sigaltstack(&ss, NULL);
310#endif
311}
312
11cf8741 313/* Call command_loop. If it happens to return, pass that through as a
371d5dec 314 non-zero return status. */
11cf8741
JM
315
316static int
317captured_command_loop (void *data)
c906108c 318{
bb5291d0 319 /* Top-level execution commands can be run in the background from
b4a14fd0
PA
320 here on. */
321 interpreter_async = 1;
322
4389a95a 323 current_interp_command_loop ();
11cf8741
JM
324 /* FIXME: cagney/1999-11-05: A correct command_loop() implementaton
325 would clean things up (restoring the cleanup chain) to the state
326 they were just prior to the call. Technically, this means that
e26cc349 327 the do_cleanups() below is redundant. Unfortunately, many FUNCs
11cf8741
JM
328 are not that well behaved. do_cleanups should either be replaced
329 with a do_cleanups call (to cover the problem) or an assertion
371d5dec 330 check to detect bad FUNCs code. */
6328eb38 331 do_cleanups (all_cleanups ());
11cf8741 332 /* If the command_loop returned, normally (rather than threw an
025bb325 333 error) we try to quit. If the quit is aborted, catch_errors()
11cf8741 334 which called this catch the signal and restart the command
371d5dec 335 loop. */
11cf8741
JM
336 quit_command (NULL, instream == stdin);
337 return 1;
338}
339
9d1e69a2
PA
340/* Type of the command callback passed to catch_command_errors. */
341
342typedef void (catch_command_errors_ftype) (char *, int);
343
344/* Wrap calls to commands run before the event loop is started. */
345
346static int
347catch_command_errors (catch_command_errors_ftype *command,
348 char *arg, int from_tty, return_mask mask)
349{
350 volatile struct gdb_exception e;
351
352 TRY_CATCH (e, mask)
353 {
354 command (arg, from_tty);
355 }
356 exception_print (gdb_stderr, e);
357 if (e.reason < 0)
358 return 0;
359 return 1;
360}
361
362/* Type of the command callback passed to catch_command_errors_const. */
363
364typedef void (catch_command_errors_const_ftype) (const char *, int);
365
366/* Like catch_command_errors, but works with const command and args. */
367
368static int
369catch_command_errors_const (catch_command_errors_const_ftype *command,
370 const char *arg, int from_tty, return_mask mask)
371{
372 volatile struct gdb_exception e;
373
374 TRY_CATCH (e, mask)
375 {
376 command (arg, from_tty);
377 }
378 exception_print (gdb_stderr, e);
379 if (e.reason < 0)
380 return 0;
381 return 1;
382}
383
26743505
JK
384/* Arguments of --command option and its counterpart. */
385typedef struct cmdarg {
386 /* Type of this option. */
387 enum {
388 /* Option type -x. */
389 CMDARG_FILE,
390
391 /* Option type -ex. */
8320cc4f
JK
392 CMDARG_COMMAND,
393
394 /* Option type -ix. */
395 CMDARG_INIT_FILE,
396
397 /* Option type -iex. */
398 CMDARG_INIT_COMMAND
26743505
JK
399 } type;
400
401 /* Value of this option - filename or the GDB command itself. String memory
402 is not owned by this structure despite it is 'const'. */
403 char *string;
404} cmdarg_s;
405
406/* Define type VEC (cmdarg_s). */
407DEF_VEC_O (cmdarg_s);
408
11cf8741
JM
409static int
410captured_main (void *data)
411{
412 struct captured_main_args *context = data;
413 int argc = context->argc;
414 char **argv = context->argv;
c906108c 415 static int quiet = 0;
552c04a7 416 static int set_args = 0;
07540c15 417 static int inhibit_home_gdbinit = 0;
c906108c
SS
418
419 /* Pointers to various arguments from command line. */
420 char *symarg = NULL;
421 char *execarg = NULL;
a4d9b460 422 char *pidarg = NULL;
c906108c 423 char *corearg = NULL;
a4d9b460 424 char *pid_or_core_arg = NULL;
c906108c
SS
425 char *cdarg = NULL;
426 char *ttyarg = NULL;
427
371d5dec
MS
428 /* These are static so that we can take their address in an
429 initializer. */
c906108c
SS
430 static int print_help;
431 static int print_version;
6eaaf48b 432 static int print_configuration;
c906108c
SS
433
434 /* Pointers to all arguments of --command option. */
26743505
JK
435 VEC (cmdarg_s) *cmdarg_vec = NULL;
436 struct cmdarg *cmdarg_p;
c906108c
SS
437
438 /* Indices of all arguments of --directory option. */
439 char **dirarg;
440 /* Allocated size. */
441 int dirsize;
442 /* Number of elements used. */
443 int ndir;
c5aa993b 444
16e7150e 445 /* gdb init files. */
50dd9793
PA
446 const char *system_gdbinit;
447 const char *home_gdbinit;
448 const char *local_gdbinit;
c906108c 449
52f0bd74 450 int i;
88a1906b 451 int save_auto_load;
7f6130ff 452 struct objfile *objfile;
c906108c 453
e565b837
DE
454 struct cleanup *pre_stat_chain;
455
456#ifdef HAVE_SBRK
457 /* Set this before calling make_command_stats_cleanup. */
458 lim_at_start = (char *) sbrk (0);
459#endif
460
461 pre_stat_chain = make_command_stats_cleanup (0);
c906108c 462
0fbb3da7
TT
463#if defined (HAVE_SETLOCALE) && defined (HAVE_LC_MESSAGES)
464 setlocale (LC_MESSAGES, "");
465#endif
466#if defined (HAVE_SETLOCALE)
467 setlocale (LC_CTYPE, "");
468#endif
469 bindtextdomain (PACKAGE, LOCALEDIR);
470 textdomain (PACKAGE);
471
5484b13a 472 bfd_init ();
614c279d 473 notice_open_fds ();
5484b13a 474
26743505 475 make_cleanup (VEC_cleanup (cmdarg_s), &cmdarg_vec);
c906108c
SS
476 dirsize = 1;
477 dirarg = (char **) xmalloc (dirsize * sizeof (*dirarg));
478 ndir = 0;
479
522002f9 480 clear_quit_flag ();
dc7eb48e
PA
481 saved_command_line = (char *) xmalloc (saved_command_line_size);
482 saved_command_line[0] = '\0';
c906108c
SS
483 instream = stdin;
484
ffa4ac95
YQ
485#ifdef __MINGW32__
486 /* Ensure stderr is unbuffered. A Cygwin pty or pipe is implemented
487 as a Windows pipe, and Windows buffers on pipes. */
488 setvbuf (stderr, NULL, _IONBF, BUFSIZ);
489#endif
490
da59e081 491 gdb_stdout = stdio_fileopen (stdout);
ffa4ac95
YQ
492 gdb_stderr = stderr_fileopen ();
493
da59e081
JM
494 gdb_stdlog = gdb_stderr; /* for moment */
495 gdb_stdtarg = gdb_stderr; /* for moment */
449092f6
CV
496 gdb_stdin = stdio_fileopen (stdin);
497 gdb_stdtargerr = gdb_stderr; /* for moment */
498 gdb_stdtargin = gdb_stdin; /* for moment */
c906108c 499
b5981e5a
EZ
500#ifdef __MINGW32__
501 /* On Windows, argv[0] is not necessarily set to absolute form when
502 GDB is found along PATH, without which relocation doesn't work. */
503 gdb_program_name = windows_get_absolute_argv0 (argv[0]);
504#else
16e7150e 505 gdb_program_name = xstrdup (argv[0]);
b5981e5a 506#endif
16e7150e 507
bf1d7d9c
JB
508 if (! getcwd (gdb_dirbuf, sizeof (gdb_dirbuf)))
509 /* Don't use *_filtered or warning() (which relies on
371d5dec 510 current_target) until after initialize_all_files(). */
bf1d7d9c 511 fprintf_unfiltered (gdb_stderr,
3e43a32a
MS
512 _("%s: warning: error finding "
513 "working directory: %s\n"),
bf1d7d9c
JB
514 argv[0], safe_strerror (errno));
515
516 current_directory = gdb_dirbuf;
517
030292b7 518 /* Set the sysroot path. */
478aac75
DE
519 gdb_sysroot = relocate_gdb_directory (TARGET_SYSTEM_ROOT,
520 TARGET_SYSTEM_ROOT_RELOCATABLE);
030292b7 521
478aac75
DE
522 debug_file_directory = relocate_gdb_directory (DEBUGDIR,
523 DEBUGDIR_RELOCATABLE);
030292b7 524
478aac75
DE
525 gdb_datadir = relocate_gdb_directory (GDB_DATADIR,
526 GDB_DATADIR_RELOCATABLE);
aa28a74e 527
0c4a4063 528#ifdef WITH_PYTHON_PATH
e6040cbd
MS
529 {
530 /* For later use in helping Python find itself. */
531 char *tmp = concat (WITH_PYTHON_PATH, SLASH_STRING, "lib", NULL);
532
478aac75 533 python_libdir = relocate_gdb_directory (tmp, PYTHON_PATH_RELOCATABLE);
e6040cbd
MS
534 xfree (tmp);
535 }
0c4a4063
DE
536#endif
537
29b0e8a2
JM
538#ifdef RELOC_SRCDIR
539 add_substitute_path_rule (RELOC_SRCDIR,
b5981e5a 540 make_relative_prefix (gdb_program_name, BINDIR,
29b0e8a2
JM
541 RELOC_SRCDIR));
542#endif
543
4389a95a 544 /* There will always be an interpreter. Either the one passed into
e46e5ccd
KS
545 this captured main, or one specified by the user at start up, or
546 the console. Initialize the interpreter to the one requested by
547 the application. */
11bf1490 548 interpreter_p = xstrdup (context->interpreter_p);
4389a95a 549
c906108c
SS
550 /* Parse arguments and options. */
551 {
552 int c;
553 /* When var field is 0, use flag field to record the equivalent
554 short option (or arbitrary numbers starting at 10 for those
555 with no equivalent). */
49c7e338
AC
556 enum {
557 OPT_SE = 10,
558 OPT_CD,
559 OPT_ANNOTATE,
560 OPT_STATISTICS,
42fa7c0f
AC
561 OPT_TUI,
562 OPT_NOWINDOWS,
8320cc4f
JK
563 OPT_WINDOWS,
564 OPT_IX,
565 OPT_IEX
49c7e338 566 };
c906108c 567 static struct option long_options[] =
c5aa993b 568 {
49c7e338 569 {"tui", no_argument, 0, OPT_TUI},
c5aa993b
JM
570 {"xdb", no_argument, &xdb_commands, 1},
571 {"dbx", no_argument, &dbx_commands, 1},
572 {"readnow", no_argument, &readnow_symbol_files, 1},
573 {"r", no_argument, &readnow_symbol_files, 1},
c5aa993b
JM
574 {"quiet", no_argument, &quiet, 1},
575 {"q", no_argument, &quiet, 1},
576 {"silent", no_argument, &quiet, 1},
07540c15 577 {"nh", no_argument, &inhibit_home_gdbinit, 1},
c5aa993b
JM
578 {"nx", no_argument, &inhibit_gdbinit, 1},
579 {"n", no_argument, &inhibit_gdbinit, 1},
1a088d06 580 {"batch-silent", no_argument, 0, 'B'},
7c953934 581 {"batch", no_argument, &batch_flag, 1},
c5aa993b 582
371d5dec
MS
583 /* This is a synonym for "--annotate=1". --annotate is now
584 preferred, but keep this here for a long time because people
585 will be running emacses which use --fullname. */
c5aa993b
JM
586 {"fullname", no_argument, 0, 'f'},
587 {"f", no_argument, 0, 'f'},
588
49c7e338 589 {"annotate", required_argument, 0, OPT_ANNOTATE},
c5aa993b 590 {"help", no_argument, &print_help, 1},
49c7e338 591 {"se", required_argument, 0, OPT_SE},
c5aa993b
JM
592 {"symbols", required_argument, 0, 's'},
593 {"s", required_argument, 0, 's'},
594 {"exec", required_argument, 0, 'e'},
595 {"e", required_argument, 0, 'e'},
596 {"core", required_argument, 0, 'c'},
597 {"c", required_argument, 0, 'c'},
00546b04
MS
598 {"pid", required_argument, 0, 'p'},
599 {"p", required_argument, 0, 'p'},
c5aa993b 600 {"command", required_argument, 0, 'x'},
8a5a3c82 601 {"eval-command", required_argument, 0, 'X'},
c5aa993b 602 {"version", no_argument, &print_version, 1},
6eaaf48b 603 {"configuration", no_argument, &print_configuration, 1},
c5aa993b 604 {"x", required_argument, 0, 'x'},
8a5a3c82 605 {"ex", required_argument, 0, 'X'},
8320cc4f
JK
606 {"init-command", required_argument, 0, OPT_IX},
607 {"init-eval-command", required_argument, 0, OPT_IEX},
608 {"ix", required_argument, 0, OPT_IX},
609 {"iex", required_argument, 0, OPT_IEX},
3fc11d3e
JM
610#ifdef GDBTK
611 {"tclcommand", required_argument, 0, 'z'},
612 {"enable-external-editor", no_argument, 0, 'y'},
613 {"editor-command", required_argument, 0, 'w'},
614#endif
8b93c638
JM
615 {"ui", required_argument, 0, 'i'},
616 {"interpreter", required_argument, 0, 'i'},
617 {"i", required_argument, 0, 'i'},
c5aa993b 618 {"directory", required_argument, 0, 'd'},
c4093a6a 619 {"d", required_argument, 0, 'd'},
aae1c79a 620 {"data-directory", required_argument, 0, 'D'},
8d551b02 621 {"D", required_argument, 0, 'D'},
49c7e338 622 {"cd", required_argument, 0, OPT_CD},
c5aa993b
JM
623 {"tty", required_argument, 0, 't'},
624 {"baud", required_argument, 0, 'b'},
625 {"b", required_argument, 0, 'b'},
42fa7c0f
AC
626 {"nw", no_argument, NULL, OPT_NOWINDOWS},
627 {"nowindows", no_argument, NULL, OPT_NOWINDOWS},
628 {"w", no_argument, NULL, OPT_WINDOWS},
629 {"windows", no_argument, NULL, OPT_WINDOWS},
49c7e338 630 {"statistics", no_argument, 0, OPT_STATISTICS},
c5aa993b 631 {"write", no_argument, &write_files, 1},
552c04a7 632 {"args", no_argument, &set_args, 1},
39c76ca3 633 {"l", required_argument, 0, 'l'},
4b0ad762 634 {"return-child-result", no_argument, &return_child_result, 1},
c5aa993b
JM
635 {0, no_argument, 0, 0}
636 };
c906108c
SS
637
638 while (1)
639 {
640 int option_index;
641
642 c = getopt_long_only (argc, argv, "",
643 long_options, &option_index);
552c04a7 644 if (c == EOF || set_args)
c906108c
SS
645 break;
646
647 /* Long option that takes an argument. */
648 if (c == 0 && long_options[option_index].flag == 0)
649 c = long_options[option_index].val;
650
651 switch (c)
652 {
653 case 0:
654 /* Long option that just sets a flag. */
655 break;
49c7e338 656 case OPT_SE:
c906108c
SS
657 symarg = optarg;
658 execarg = optarg;
659 break;
49c7e338 660 case OPT_CD:
c906108c
SS
661 cdarg = optarg;
662 break;
49c7e338 663 case OPT_ANNOTATE:
c906108c
SS
664 /* FIXME: what if the syntax is wrong (e.g. not digits)? */
665 annotation_level = atoi (optarg);
666 break;
49c7e338 667 case OPT_STATISTICS:
c906108c 668 /* Enable the display of both time and space usage. */
bd712aed
DE
669 set_per_command_time (1);
670 set_per_command_space (1);
c906108c 671 break;
49c7e338 672 case OPT_TUI:
021e7609 673 /* --tui is equivalent to -i=tui. */
b0da54f1 674#ifdef TUI
021e7609 675 xfree (interpreter_p);
cc4349ed 676 interpreter_p = xstrdup (INTERP_TUI);
b0da54f1
BW
677#else
678 fprintf_unfiltered (gdb_stderr,
679 _("%s: TUI mode is not supported\n"),
680 argv[0]);
681 exit (1);
682#endif
021e7609 683 break;
42fa7c0f
AC
684 case OPT_WINDOWS:
685 /* FIXME: cagney/2003-03-01: Not sure if this option is
686 actually useful, and if it is, what it should do. */
cc4349ed
AS
687#ifdef GDBTK
688 /* --windows is equivalent to -i=insight. */
689 xfree (interpreter_p);
690 interpreter_p = xstrdup (INTERP_INSIGHT);
691#endif
42fa7c0f
AC
692 break;
693 case OPT_NOWINDOWS:
694 /* -nw is equivalent to -i=console. */
695 xfree (interpreter_p);
696 interpreter_p = xstrdup (INTERP_CONSOLE);
42fa7c0f 697 break;
c906108c
SS
698 case 'f':
699 annotation_level = 1;
c906108c
SS
700 break;
701 case 's':
702 symarg = optarg;
703 break;
704 case 'e':
705 execarg = optarg;
706 break;
707 case 'c':
708 corearg = optarg;
709 break;
00546b04 710 case 'p':
a4d9b460 711 pidarg = optarg;
00546b04 712 break;
c906108c 713 case 'x':
26743505
JK
714 {
715 struct cmdarg cmdarg = { CMDARG_FILE, optarg };
716
717 VEC_safe_push (cmdarg_s, cmdarg_vec, &cmdarg);
718 }
8a5a3c82
AS
719 break;
720 case 'X':
26743505
JK
721 {
722 struct cmdarg cmdarg = { CMDARG_COMMAND, optarg };
723
724 VEC_safe_push (cmdarg_s, cmdarg_vec, &cmdarg);
725 }
726 break;
8320cc4f
JK
727 case OPT_IX:
728 {
729 struct cmdarg cmdarg = { CMDARG_INIT_FILE, optarg };
730
731 VEC_safe_push (cmdarg_s, cmdarg_vec, &cmdarg);
732 }
733 break;
734 case OPT_IEX:
735 {
736 struct cmdarg cmdarg = { CMDARG_INIT_COMMAND, optarg };
737
738 VEC_safe_push (cmdarg_s, cmdarg_vec, &cmdarg);
739 }
c906108c 740 break;
1a088d06 741 case 'B':
7c953934 742 batch_flag = batch_silent = 1;
1a088d06
AS
743 gdb_stdout = ui_file_new();
744 break;
aae1c79a 745 case 'D':
8d551b02
DE
746 if (optarg[0] == '\0')
747 {
748 fprintf_unfiltered (gdb_stderr,
749 _("%s: empty path for"
750 " `--data-directory'\n"),
751 argv[0]);
752 exit (1);
753 }
754 set_gdb_data_directory (optarg);
e64e0392 755 gdb_datadir_provided = 1;
aae1c79a 756 break;
3fc11d3e
JM
757#ifdef GDBTK
758 case 'z':
759 {
371d5dec
MS
760 extern int gdbtk_test (char *);
761
3fc11d3e
JM
762 if (!gdbtk_test (optarg))
763 {
3e43a32a
MS
764 fprintf_unfiltered (gdb_stderr,
765 _("%s: unable to load "
766 "tclcommand file \"%s\""),
3fc11d3e
JM
767 argv[0], optarg);
768 exit (1);
769 }
770 break;
771 }
772 case 'y':
78f49586
TT
773 /* Backwards compatibility only. */
774 break;
3fc11d3e
JM
775 case 'w':
776 {
3a9b40b6
JK
777 /* Set the external editor commands when gdb is farming out files
778 to be edited by another program. */
779 extern char *external_editor_command;
780
3fc11d3e
JM
781 external_editor_command = xstrdup (optarg);
782 break;
783 }
784#endif /* GDBTK */
fb40c209 785 case 'i':
4389a95a
AC
786 xfree (interpreter_p);
787 interpreter_p = xstrdup (optarg);
fb40c209 788 break;
c906108c
SS
789 case 'd':
790 dirarg[ndir++] = optarg;
791 if (ndir >= dirsize)
792 {
793 dirsize *= 2;
c5aa993b 794 dirarg = (char **) xrealloc ((char *) dirarg,
c906108c
SS
795 dirsize * sizeof (*dirarg));
796 }
797 break;
798 case 't':
799 ttyarg = optarg;
800 break;
801 case 'q':
802 quiet = 1;
803 break;
804 case 'b':
805 {
806 int i;
807 char *p;
808
809 i = strtol (optarg, &p, 0);
810 if (i == 0 && p == optarg)
811
812 /* Don't use *_filtered or warning() (which relies on
371d5dec 813 current_target) until after initialize_all_files(). */
c906108c
SS
814
815 fprintf_unfiltered
816 (gdb_stderr,
defc6f8c 817 _("warning: could not set baud rate to `%s'.\n"), optarg);
c906108c
SS
818 else
819 baud_rate = i;
820 }
046ca86a 821 break;
c906108c
SS
822 case 'l':
823 {
824 int i;
825 char *p;
826
827 i = strtol (optarg, &p, 0);
828 if (i == 0 && p == optarg)
829
830 /* Don't use *_filtered or warning() (which relies on
371d5dec 831 current_target) until after initialize_all_files(). */
c906108c 832
3e43a32a
MS
833 fprintf_unfiltered (gdb_stderr,
834 _("warning: could not set "
835 "timeout limit to `%s'.\n"), optarg);
c906108c
SS
836 else
837 remote_timeout = i;
838 }
839 break;
840
c906108c
SS
841 case '?':
842 fprintf_unfiltered (gdb_stderr,
3e43a32a
MS
843 _("Use `%s --help' for a "
844 "complete list of options.\n"),
c5aa993b 845 argv[0]);
c906108c
SS
846 exit (1);
847 }
848 }
849
7c953934 850 if (batch_flag)
c906108c
SS
851 quiet = 1;
852 }
853
992c7d70
GB
854 /* Try to set up an alternate signal stack for SIGSEGV handlers. */
855 setup_alternate_signal_stack ();
856
0f71a2f6 857 /* Initialize all files. Give the interpreter a chance to take
ba5e7e8d 858 control of the console via the deprecated_init_ui_hook (). */
b5981e5a 859 gdb_init (gdb_program_name);
c906108c 860
371d5dec
MS
861 /* Now that gdb_init has created the initial inferior, we're in
862 position to set args for that inferior. */
3f81c18a
VP
863 if (set_args)
864 {
865 /* The remaining options are the command-line options for the
866 inferior. The first one is the sym/exec file, and the rest
867 are arguments. */
868 if (optind >= argc)
869 {
870 fprintf_unfiltered (gdb_stderr,
3e43a32a
MS
871 _("%s: `--args' specified but "
872 "no program specified\n"),
3f81c18a
VP
873 argv[0]);
874 exit (1);
875 }
876 symarg = argv[optind];
877 execarg = argv[optind];
878 ++optind;
879 set_inferior_args_vector (argc - optind, &argv[optind]);
880 }
881 else
882 {
883 /* OK, that's all the options. */
884
885 /* The first argument, if specified, is the name of the
886 executable. */
887 if (optind < argc)
888 {
889 symarg = argv[optind];
890 execarg = argv[optind];
891 optind++;
892 }
893
894 /* If the user hasn't already specified a PID or the name of a
895 core file, then a second optional argument is allowed. If
896 present, this argument should be interpreted as either a
897 PID or a core file, whichever works. */
898 if (pidarg == NULL && corearg == NULL && optind < argc)
899 {
900 pid_or_core_arg = argv[optind];
901 optind++;
902 }
903
904 /* Any argument left on the command line is unexpected and
905 will be ignored. Inform the user. */
906 if (optind < argc)
3e43a32a
MS
907 fprintf_unfiltered (gdb_stderr,
908 _("Excess command line "
909 "arguments ignored. (%s%s)\n"),
3f81c18a
VP
910 argv[optind],
911 (optind == argc - 1) ? "" : " ...");
912 }
913
025bb325 914 /* Lookup gdbinit files. Note that the gdbinit file name may be
371d5dec
MS
915 overriden during file initialization, so get_init_files should be
916 called after gdb_init. */
57a46001
JG
917 get_init_files (&system_gdbinit, &home_gdbinit, &local_gdbinit);
918
c906108c 919 /* Do these (and anything which might call wrap_here or *_filtered)
4389a95a
AC
920 after initialize_all_files() but before the interpreter has been
921 installed. Otherwize the help/version messages will be eaten by
922 the interpreter's output handler. */
923
c906108c
SS
924 if (print_version)
925 {
926 print_gdb_version (gdb_stdout);
927 wrap_here ("");
928 printf_filtered ("\n");
929 exit (0);
930 }
931
932 if (print_help)
933 {
934 print_gdb_help (gdb_stdout);
935 fputs_unfiltered ("\n", gdb_stdout);
936 exit (0);
937 }
938
6eaaf48b
EZ
939 if (print_configuration)
940 {
941 print_gdb_configuration (gdb_stdout);
942 wrap_here ("");
943 printf_filtered ("\n");
944 exit (0);
945 }
946
4389a95a
AC
947 /* FIXME: cagney/2003-02-03: The big hack (part 1 of 2) that lets
948 GDB retain the old MI1 interpreter startup behavior. Output the
949 copyright message before the interpreter is installed. That way
950 it isn't encapsulated in MI output. */
951 if (!quiet && strcmp (interpreter_p, INTERP_MI1) == 0)
952 {
371d5dec
MS
953 /* Print all the junk at the top, with trailing "..." if we are
954 about to read a symbol file (possibly slowly). */
4389a95a
AC
955 print_gdb_version (gdb_stdout);
956 if (symarg)
957 printf_filtered ("..");
958 wrap_here ("");
e896d70e 959 printf_filtered ("\n");
371d5dec
MS
960 gdb_flush (gdb_stdout); /* Force to screen during slow
961 operations. */
4389a95a
AC
962 }
963
4389a95a 964 /* Install the default UI. All the interpreters should have had a
371d5dec 965 look at things by now. Initialize the default interpreter. */
4389a95a
AC
966
967 {
968 /* Find it. */
969 struct interp *interp = interp_lookup (interpreter_p);
b8d56208 970
4389a95a 971 if (interp == NULL)
8a3fe4f8 972 error (_("Interpreter `%s' unrecognized"), interpreter_p);
4389a95a 973 /* Install it. */
683f2885 974 if (!interp_set (interp, 1))
4389a95a
AC
975 {
976 fprintf_unfiltered (gdb_stderr,
977 "Interpreter `%s' failed to initialize.\n",
978 interpreter_p);
979 exit (1);
980 }
981 }
982
983 /* FIXME: cagney/2003-02-03: The big hack (part 2 of 2) that lets
984 GDB retain the old MI1 interpreter startup behavior. Output the
985 copyright message after the interpreter is installed when it is
986 any sane interpreter. */
987 if (!quiet && !current_interp_named_p (INTERP_MI1))
c906108c 988 {
371d5dec
MS
989 /* Print all the junk at the top, with trailing "..." if we are
990 about to read a symbol file (possibly slowly). */
c906108c
SS
991 print_gdb_version (gdb_stdout);
992 if (symarg)
993 printf_filtered ("..");
c5aa993b 994 wrap_here ("");
e896d70e 995 printf_filtered ("\n");
371d5dec
MS
996 gdb_flush (gdb_stdout); /* Force to screen during slow
997 operations. */
c906108c
SS
998 }
999
e896d70e 1000 /* Set off error and warning messages with a blank line. */
defc6f8c 1001 warning_pre_print = _("\nwarning: ");
c906108c 1002
16e7150e
JG
1003 /* Read and execute the system-wide gdbinit file, if it exists.
1004 This is done *before* all the command line arguments are
1005 processed; it sets global parameters, which are independent of
1006 what file you are debugging or what directory you are in. */
1007 if (system_gdbinit && !inhibit_gdbinit)
50dd9793
PA
1008 catch_command_errors_const (source_script, system_gdbinit,
1009 0, RETURN_MASK_ALL);
16e7150e 1010
c906108c
SS
1011 /* Read and execute $HOME/.gdbinit file, if it exists. This is done
1012 *before* all the command line arguments are processed; it sets
1013 global parameters, which are independent of what file you are
1014 debugging or what directory you are in. */
c906108c 1015
07540c15 1016 if (home_gdbinit && !inhibit_gdbinit && !inhibit_home_gdbinit)
50dd9793
PA
1017 catch_command_errors_const (source_script,
1018 home_gdbinit, 0, RETURN_MASK_ALL);
c906108c 1019
2d7b58e8
JK
1020 /* Process '-ix' and '-iex' options early. */
1021 for (i = 0; VEC_iterate (cmdarg_s, cmdarg_vec, i, cmdarg_p); i++)
1022 switch (cmdarg_p->type)
1023 {
1024 case CMDARG_INIT_FILE:
50dd9793
PA
1025 catch_command_errors_const (source_script, cmdarg_p->string,
1026 !batch_flag, RETURN_MASK_ALL);
2d7b58e8
JK
1027 break;
1028 case CMDARG_INIT_COMMAND:
1029 catch_command_errors (execute_command, cmdarg_p->string,
1030 !batch_flag, RETURN_MASK_ALL);
1031 break;
1032 }
1033
c906108c
SS
1034 /* Now perform all the actions indicated by the arguments. */
1035 if (cdarg != NULL)
1036 {
11cf8741 1037 catch_command_errors (cd_command, cdarg, 0, RETURN_MASK_ALL);
c906108c 1038 }
c906108c
SS
1039
1040 for (i = 0; i < ndir; i++)
13d35ae5 1041 catch_command_errors (directory_switch, dirarg[i], 0, RETURN_MASK_ALL);
b8c9b27d 1042 xfree (dirarg);
c906108c 1043
88a1906b 1044 /* Skip auto-loading section-specified scripts until we've sourced
371d5dec
MS
1045 local_gdbinit (which is often used to augment the source search
1046 path). */
bf88dd68
JK
1047 save_auto_load = global_auto_load;
1048 global_auto_load = 0;
88a1906b 1049
c906108c
SS
1050 if (execarg != NULL
1051 && symarg != NULL
5cb316ef 1052 && strcmp (execarg, symarg) == 0)
c906108c 1053 {
11cf8741
JM
1054 /* The exec file and the symbol-file are the same. If we can't
1055 open it, better only print one error message.
371d5dec 1056 catch_command_errors returns non-zero on success! */
3e43a32a
MS
1057 if (catch_command_errors (exec_file_attach, execarg,
1058 !batch_flag, RETURN_MASK_ALL))
69150c3d
JK
1059 catch_command_errors_const (symbol_file_add_main, symarg,
1060 !batch_flag, RETURN_MASK_ALL);
c906108c
SS
1061 }
1062 else
1063 {
1064 if (execarg != NULL)
3e43a32a
MS
1065 catch_command_errors (exec_file_attach, execarg,
1066 !batch_flag, RETURN_MASK_ALL);
c906108c 1067 if (symarg != NULL)
69150c3d
JK
1068 catch_command_errors_const (symbol_file_add_main, symarg,
1069 !batch_flag, RETURN_MASK_ALL);
c906108c 1070 }
c906108c 1071
a4d9b460 1072 if (corearg && pidarg)
3e43a32a
MS
1073 error (_("Can't attach to process and specify "
1074 "a core file at the same time."));
a4d9b460 1075
c906108c 1076 if (corearg != NULL)
a4d9b460 1077 catch_command_errors (core_file_command, corearg,
7c953934 1078 !batch_flag, RETURN_MASK_ALL);
a4d9b460
PA
1079 else if (pidarg != NULL)
1080 catch_command_errors (attach_command, pidarg,
7c953934 1081 !batch_flag, RETURN_MASK_ALL);
a4d9b460 1082 else if (pid_or_core_arg)
c906108c 1083 {
a4d9b460
PA
1084 /* The user specified 'gdb program pid' or gdb program core'.
1085 If pid_or_core_arg's first character is a digit, try attach
1086 first and then corefile. Otherwise try just corefile. */
00546b04 1087
a4d9b460 1088 if (isdigit (pid_or_core_arg[0]))
11cf8741 1089 {
a4d9b460 1090 if (catch_command_errors (attach_command, pid_or_core_arg,
7c953934 1091 !batch_flag, RETURN_MASK_ALL) == 0)
a4d9b460 1092 catch_command_errors (core_file_command, pid_or_core_arg,
7c953934 1093 !batch_flag, RETURN_MASK_ALL);
11cf8741 1094 }
a4d9b460
PA
1095 else /* Can't be a pid, better be a corefile. */
1096 catch_command_errors (core_file_command, pid_or_core_arg,
7c953934 1097 !batch_flag, RETURN_MASK_ALL);
c906108c 1098 }
c906108c
SS
1099
1100 if (ttyarg != NULL)
3f81c18a 1101 set_inferior_io_terminal (ttyarg);
c906108c 1102
371d5dec 1103 /* Error messages should no longer be distinguished with extra output. */
defc6f8c 1104 warning_pre_print = _("warning: ");
c906108c
SS
1105
1106 /* Read the .gdbinit file in the current directory, *if* it isn't
1107 the same as the $HOME/.gdbinit file (it should exist, also). */
bf88dd68
JK
1108 if (local_gdbinit)
1109 {
1110 auto_load_local_gdbinit_pathname = gdb_realpath (local_gdbinit);
1111
bccbefd2 1112 if (!inhibit_gdbinit && auto_load_local_gdbinit
4dc84fd1
JK
1113 && file_is_auto_load_safe (local_gdbinit,
1114 _("auto-load: Loading .gdbinit "
1115 "file \"%s\".\n"),
1116 local_gdbinit))
bf88dd68
JK
1117 {
1118 auto_load_local_gdbinit_loaded = 1;
1119
50dd9793
PA
1120 catch_command_errors_const (source_script, local_gdbinit, 0,
1121 RETURN_MASK_ALL);
bf88dd68
JK
1122 }
1123 }
c906108c 1124
88a1906b
DE
1125 /* Now that all .gdbinit's have been read and all -d options have been
1126 processed, we can read any scripts mentioned in SYMARG.
1127 We wait until now because it is common to add to the source search
1128 path in local_gdbinit. */
bf88dd68 1129 global_auto_load = save_auto_load;
7f6130ff
JK
1130 ALL_OBJFILES (objfile)
1131 load_auto_scripts_for_objfile (objfile);
88a1906b 1132
8320cc4f 1133 /* Process '-x' and '-ex' options. */
26743505
JK
1134 for (i = 0; VEC_iterate (cmdarg_s, cmdarg_vec, i, cmdarg_p); i++)
1135 switch (cmdarg_p->type)
c906108c 1136 {
26743505 1137 case CMDARG_FILE:
50dd9793
PA
1138 catch_command_errors_const (source_script, cmdarg_p->string,
1139 !batch_flag, RETURN_MASK_ALL);
26743505
JK
1140 break;
1141 case CMDARG_COMMAND:
1142 catch_command_errors (execute_command, cmdarg_p->string,
7c953934 1143 !batch_flag, RETURN_MASK_ALL);
26743505 1144 break;
c906108c 1145 }
c906108c 1146
371d5dec
MS
1147 /* Read in the old history after all the command files have been
1148 read. */
c5aa993b 1149 init_history ();
c906108c 1150
7c953934 1151 if (batch_flag)
c906108c
SS
1152 {
1153 /* We have hit the end of the batch file. */
4b0ad762 1154 quit_force (NULL, 0);
c906108c
SS
1155 }
1156
c906108c 1157 /* Show time and/or space usage. */
0f3bb72e 1158 do_cleanups (pre_stat_chain);
c906108c 1159
11cf8741
JM
1160 /* NOTE: cagney/1999-11-07: There is probably no reason for not
1161 moving this loop and the code found in captured_command_loop()
1162 into the command_loop() proper. The main thing holding back that
371d5dec 1163 change - SET_TOP_LEVEL() - has been eliminated. */
11cf8741
JM
1164 while (1)
1165 {
1166 catch_errors (captured_command_loop, 0, "", RETURN_MASK_ALL);
1167 }
11cf8741
JM
1168 /* No exit -- exit is through quit_command. */
1169}
c906108c 1170
11cf8741 1171int
f15ab4a7 1172gdb_main (struct captured_main_args *args)
11cf8741 1173{
f15ab4a7 1174 catch_errors (captured_main, args, "", RETURN_MASK_ALL);
864dbc90
AC
1175 /* The only way to end up here is by an error (normal exit is
1176 handled by quit_force()), hence always return an error status. */
1177 return 1;
c906108c
SS
1178}
1179
11cf8741 1180
c906108c
SS
1181/* Don't use *_filtered for printing help. We don't want to prompt
1182 for continue no matter how small the screen or how much we're going
1183 to print. */
1184
1185static void
d9fcf2fb 1186print_gdb_help (struct ui_file *stream)
c906108c 1187{
50dd9793
PA
1188 const char *system_gdbinit;
1189 const char *home_gdbinit;
1190 const char *local_gdbinit;
16e7150e
JG
1191
1192 get_init_files (&system_gdbinit, &home_gdbinit, &local_gdbinit);
1193
b187bec1
EZ
1194 /* Note: The options in the list below are only approximately sorted
1195 in the alphabetical order, so as to group closely related options
1196 together. */
defc6f8c 1197 fputs_unfiltered (_("\
c906108c 1198This is the GNU debugger. Usage:\n\n\
552c04a7
TT
1199 gdb [options] [executable-file [core-file or process-id]]\n\
1200 gdb [options] --args executable-file [inferior-arguments ...]\n\n\
defc6f8c
TT
1201"), stream);
1202 fputs_unfiltered (_("\
b187bec1 1203Selection of debuggee and its files:\n\n\
552c04a7 1204 --args Arguments after executable-file are passed to inferior\n\
b187bec1
EZ
1205 --core=COREFILE Analyze the core dump COREFILE.\n\
1206 --exec=EXECFILE Use EXECFILE as the executable.\n\
1207 --pid=PID Attach to running process PID.\n\
1208 --directory=DIR Search for source files in DIR.\n\
1209 --se=FILE Use FILE as symbol file and executable file.\n\
1210 --symbols=SYMFILE Read symbols from SYMFILE.\n\
1211 --readnow Fully read symbol files on first access.\n\
1212 --write Set writing into executable and core files.\n\n\
defc6f8c
TT
1213"), stream);
1214 fputs_unfiltered (_("\
b187bec1 1215Initial commands and command files:\n\n\
8a5a3c82 1216 --command=FILE, -x Execute GDB commands from FILE.\n\
b187bec1
EZ
1217 --init-command=FILE, -ix\n\
1218 Like -x but execute commands before loading inferior.\n\
8a5a3c82
AS
1219 --eval-command=COMMAND, -ex\n\
1220 Execute a single GDB command.\n\
1221 May be used multiple times and in conjunction\n\
1222 with --command.\n\
b187bec1
EZ
1223 --init-eval-command=COMMAND, -iex\n\
1224 Like -ex but before loading inferior.\n\
1225 --nh Do not read ~/.gdbinit.\n\
1226 --nx Do not read any .gdbinit files in any directory.\n\n\
defc6f8c
TT
1227"), stream);
1228 fputs_unfiltered (_("\
b187bec1 1229Output and user interface control:\n\n\
c906108c 1230 --fullname Output information used by emacs-GDB interface.\n\
8b93c638
JM
1231 --interpreter=INTERP\n\
1232 Select a specific interpreter / user interface\n\
c906108c 1233 --tty=TTY Use TTY for input/output by the program being debugged.\n\
b187bec1
EZ
1234 -w Use the GUI interface.\n\
1235 --nw Do not use the GUI interface.\n\
defc6f8c 1236"), stream);
c906108c 1237#if defined(TUI)
defc6f8c 1238 fputs_unfiltered (_("\
c906108c 1239 --tui Use a terminal user interface.\n\
defc6f8c 1240"), stream);
c906108c 1241#endif
481860b3 1242 fputs_unfiltered (_("\
b187bec1 1243 --dbx DBX compatibility mode.\n\
c906108c 1244 --xdb XDB compatibility mode.\n\
adcc0a31 1245 -q, --quiet, --silent\n\
1246 Do not print version number on startup.\n\n\
b187bec1
EZ
1247"), stream);
1248 fputs_unfiltered (_("\
1249Operating modes:\n\n\
1250 --batch Exit after processing options.\n\
1251 --batch-silent Like --batch, but suppress all gdb stdout output.\n\
1252 --return-child-result\n\
1253 GDB exit code will be the child's exit code.\n\
1254 --configuration Print details about GDB configuration and then exit.\n\
1255 --help Print this message and then exit.\n\
1256 --version Print version information and then exit.\n\n\
1257Remote debugging options:\n\n\
1258 -b BAUDRATE Set serial port baud rate used for remote debugging.\n\
1259 -l TIMEOUT Set timeout in seconds for remote debugging.\n\n\
1260Other options:\n\n\
1261 --cd=DIR Change current directory to DIR.\n\
8d551b02
DE
1262 --data-directory=DIR, -D\n\
1263 Set GDB's data-directory to DIR.\n\
defc6f8c 1264"), stream);
defc6f8c 1265 fputs_unfiltered (_("\n\
16e7150e
JG
1266At startup, GDB reads the following init files and executes their commands:\n\
1267"), stream);
1268 if (system_gdbinit)
1269 fprintf_unfiltered (stream, _("\
1270 * system-wide init file: %s\n\
1271"), system_gdbinit);
1272 if (home_gdbinit)
1273 fprintf_unfiltered (stream, _("\
1274 * user-specific init file: %s\n\
1275"), home_gdbinit);
1276 if (local_gdbinit)
1277 fprintf_unfiltered (stream, _("\
bf88dd68 1278 * local init file (see also 'set auto-load local-gdbinit'): ./%s\n\
16e7150e
JG
1279"), local_gdbinit);
1280 fputs_unfiltered (_("\n\
c906108c
SS
1281For more information, type \"help\" from within GDB, or consult the\n\
1282GDB manual (available as on-line info or a printed manual).\n\
defc6f8c 1283"), stream);
c16158bc
JM
1284 if (REPORT_BUGS_TO[0] && stream == gdb_stdout)
1285 fprintf_unfiltered (stream, _("\
1286Report bugs to \"%s\".\n\
1287"), REPORT_BUGS_TO);
c906108c 1288}