1 /* Top level stuff for GDB, the GNU debugger.
3 Copyright (C) 1986-2013 Free Software Foundation, Inc.
5 This file is part of GDB.
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
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
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.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
27 #include "exceptions.h"
30 #include <sys/types.h>
34 #include "gdb_string.h"
35 #include "event-loop.h"
41 #include "cli/cli-cmds.h"
42 #include "python/python.h"
44 #include "auto-load.h"
46 /* The selected interpreter. This will be used as a set command
47 variable, so it should always be malloc'ed - since
48 do_setshow_command will free it. */
51 /* Whether xdb commands will be handled. */
54 /* Whether dbx commands will be handled. */
57 /* System root path, used to find libraries etc. */
58 char *gdb_sysroot
= 0;
60 /* GDB datadir, used to store data files. */
61 char *gdb_datadir
= 0;
63 /* Non-zero if GDB_DATADIR was provided on the command line.
64 This doesn't track whether data-directory is set later from the
65 command line, but we don't reread system.gdbinit when that happens. */
66 static int gdb_datadir_provided
= 0;
68 /* If gdb was configured with --with-python=/path,
69 the possibly relocated path to python's lib directory. */
70 char *python_libdir
= 0;
72 struct ui_file
*gdb_stdout
;
73 struct ui_file
*gdb_stderr
;
74 struct ui_file
*gdb_stdlog
;
75 struct ui_file
*gdb_stdin
;
76 /* Target IO streams. */
77 struct ui_file
*gdb_stdtargin
;
78 struct ui_file
*gdb_stdtarg
;
79 struct ui_file
*gdb_stdtargerr
;
81 /* True if --batch or --batch-silent was seen. */
84 /* Support for the --batch-silent option. */
87 /* Support for --return-child-result option.
88 Set the default to -1 to return error in the case
89 that the program does not run or does not complete. */
90 int return_child_result
= 0;
91 int return_child_result_value
= -1;
94 /* GDB as it has been invoked from the command line (i.e. argv[0]). */
95 static char *gdb_program_name
;
97 static void print_gdb_help (struct ui_file
*);
99 /* Relocate a file or directory. PROGNAME is the name by which gdb
100 was invoked (i.e., argv[0]). INITIAL is the default value for the
101 file or directory. FLAG is true if the value is relocatable, false
102 otherwise. Returns a newly allocated string; this may return NULL
103 under the same conditions as make_relative_prefix. */
106 relocate_path (const char *progname
, const char *initial
, int flag
)
109 return make_relative_prefix (progname
, BINDIR
, initial
);
110 return xstrdup (initial
);
113 /* Like relocate_path, but specifically checks for a directory.
114 INITIAL is relocated according to the rules of relocate_path. If
115 the result is a directory, it is used; otherwise, INITIAL is used.
116 The chosen directory is then canonicalized using lrealpath. This
117 function always returns a newly-allocated string. */
120 relocate_gdb_directory (const char *initial
, int flag
)
124 dir
= relocate_path (gdb_program_name
, initial
, flag
);
129 if (*dir
== '\0' || stat (dir
, &s
) != 0 || !S_ISDIR (s
.st_mode
))
136 dir
= xstrdup (initial
);
138 /* Canonicalize the directory. */
141 char *canon_sysroot
= lrealpath (dir
);
153 /* Compute the locations of init files that GDB should source and
154 return them in SYSTEM_GDBINIT, HOME_GDBINIT, LOCAL_GDBINIT. If
155 there is no system gdbinit (resp. home gdbinit and local gdbinit)
156 to be loaded, then SYSTEM_GDBINIT (resp. HOME_GDBINIT and
157 LOCAL_GDBINIT) is set to NULL. */
159 get_init_files (char **system_gdbinit
,
161 char **local_gdbinit
)
163 static char *sysgdbinit
= NULL
;
164 static char *homeinit
= NULL
;
165 static char *localinit
= NULL
;
166 static int initialized
= 0;
170 struct stat homebuf
, cwdbuf
, s
;
173 if (SYSTEM_GDBINIT
[0])
175 int datadir_len
= strlen (GDB_DATADIR
);
176 int sys_gdbinit_len
= strlen (SYSTEM_GDBINIT
);
177 char *relocated_sysgdbinit
;
179 /* If SYSTEM_GDBINIT lives in data-directory, and data-directory
180 has been provided, search for SYSTEM_GDBINIT there. */
181 if (gdb_datadir_provided
182 && datadir_len
< sys_gdbinit_len
183 && strncmp (SYSTEM_GDBINIT
, GDB_DATADIR
, datadir_len
) == 0
184 && strchr (SLASH_STRING
, SYSTEM_GDBINIT
[datadir_len
]) != NULL
)
186 /* Append the part of SYSTEM_GDBINIT that follows GDB_DATADIR
188 char *tmp_sys_gdbinit
= xstrdup (SYSTEM_GDBINIT
+ datadir_len
);
191 for (p
= tmp_sys_gdbinit
; strchr (SLASH_STRING
, *p
); ++p
)
193 relocated_sysgdbinit
= concat (gdb_datadir
, SLASH_STRING
, p
,
195 xfree (tmp_sys_gdbinit
);
199 relocated_sysgdbinit
= relocate_path (gdb_program_name
,
201 SYSTEM_GDBINIT_RELOCATABLE
);
203 if (relocated_sysgdbinit
&& stat (relocated_sysgdbinit
, &s
) == 0)
204 sysgdbinit
= relocated_sysgdbinit
;
206 xfree (relocated_sysgdbinit
);
209 homedir
= getenv ("HOME");
211 /* If the .gdbinit file in the current directory is the same as
212 the $HOME/.gdbinit file, it should not be sourced. homebuf
213 and cwdbuf are used in that purpose. Make sure that the stats
214 are zero in case one of them fails (this guarantees that they
215 won't match if either exists). */
217 memset (&homebuf
, 0, sizeof (struct stat
));
218 memset (&cwdbuf
, 0, sizeof (struct stat
));
222 homeinit
= xstrprintf ("%s/%s", homedir
, gdbinit
);
223 if (stat (homeinit
, &homebuf
) != 0)
230 if (stat (gdbinit
, &cwdbuf
) == 0)
233 || memcmp ((char *) &homebuf
, (char *) &cwdbuf
,
234 sizeof (struct stat
)))
241 *system_gdbinit
= sysgdbinit
;
242 *home_gdbinit
= homeinit
;
243 *local_gdbinit
= localinit
;
246 /* Call command_loop. If it happens to return, pass that through as a
247 non-zero return status. */
250 captured_command_loop (void *data
)
252 /* Top-level execution commands can be run on the background from
254 interpreter_async
= 1;
256 current_interp_command_loop ();
257 /* FIXME: cagney/1999-11-05: A correct command_loop() implementaton
258 would clean things up (restoring the cleanup chain) to the state
259 they were just prior to the call. Technically, this means that
260 the do_cleanups() below is redundant. Unfortunately, many FUNCs
261 are not that well behaved. do_cleanups should either be replaced
262 with a do_cleanups call (to cover the problem) or an assertion
263 check to detect bad FUNCs code. */
264 do_cleanups (all_cleanups ());
265 /* If the command_loop returned, normally (rather than threw an
266 error) we try to quit. If the quit is aborted, catch_errors()
267 which called this catch the signal and restart the command
269 quit_command (NULL
, instream
== stdin
);
273 /* Arguments of --command option and its counterpart. */
274 typedef struct cmdarg
{
275 /* Type of this option. */
277 /* Option type -x. */
280 /* Option type -ex. */
283 /* Option type -ix. */
286 /* Option type -iex. */
290 /* Value of this option - filename or the GDB command itself. String memory
291 is not owned by this structure despite it is 'const'. */
295 /* Define type VEC (cmdarg_s). */
296 DEF_VEC_O (cmdarg_s
);
299 captured_main (void *data
)
301 struct captured_main_args
*context
= data
;
302 int argc
= context
->argc
;
303 char **argv
= context
->argv
;
304 static int quiet
= 0;
305 static int set_args
= 0;
306 static int inhibit_home_gdbinit
= 0;
308 /* Pointers to various arguments from command line. */
310 char *execarg
= NULL
;
312 char *corearg
= NULL
;
313 char *pid_or_core_arg
= NULL
;
317 /* These are static so that we can take their address in an
319 static int print_help
;
320 static int print_version
;
322 /* Pointers to all arguments of --command option. */
323 VEC (cmdarg_s
) *cmdarg_vec
= NULL
;
324 struct cmdarg
*cmdarg_p
;
326 /* Indices of all arguments of --directory option. */
328 /* Allocated size. */
330 /* Number of elements used. */
333 /* gdb init files. */
334 char *system_gdbinit
;
340 struct objfile
*objfile
;
342 struct cleanup
*pre_stat_chain
;
345 /* Set this before calling make_command_stats_cleanup. */
346 lim_at_start
= (char *) sbrk (0);
349 pre_stat_chain
= make_command_stats_cleanup (0);
351 #if defined (HAVE_SETLOCALE) && defined (HAVE_LC_MESSAGES)
352 setlocale (LC_MESSAGES
, "");
354 #if defined (HAVE_SETLOCALE)
355 setlocale (LC_CTYPE
, "");
357 bindtextdomain (PACKAGE
, LOCALEDIR
);
358 textdomain (PACKAGE
);
362 make_cleanup (VEC_cleanup (cmdarg_s
), &cmdarg_vec
);
364 dirarg
= (char **) xmalloc (dirsize
* sizeof (*dirarg
));
368 saved_command_line
= (char *) xmalloc (saved_command_line_size
);
369 saved_command_line
[0] = '\0';
372 gdb_stdout
= stdio_fileopen (stdout
);
373 gdb_stderr
= stdio_fileopen (stderr
);
374 gdb_stdlog
= gdb_stderr
; /* for moment */
375 gdb_stdtarg
= gdb_stderr
; /* for moment */
376 gdb_stdin
= stdio_fileopen (stdin
);
377 gdb_stdtargerr
= gdb_stderr
; /* for moment */
378 gdb_stdtargin
= gdb_stdin
; /* for moment */
380 gdb_program_name
= xstrdup (argv
[0]);
382 if (! getcwd (gdb_dirbuf
, sizeof (gdb_dirbuf
)))
383 /* Don't use *_filtered or warning() (which relies on
384 current_target) until after initialize_all_files(). */
385 fprintf_unfiltered (gdb_stderr
,
386 _("%s: warning: error finding "
387 "working directory: %s\n"),
388 argv
[0], safe_strerror (errno
));
390 current_directory
= gdb_dirbuf
;
392 /* Set the sysroot path. */
393 gdb_sysroot
= relocate_gdb_directory (TARGET_SYSTEM_ROOT
,
394 TARGET_SYSTEM_ROOT_RELOCATABLE
);
396 debug_file_directory
= relocate_gdb_directory (DEBUGDIR
,
397 DEBUGDIR_RELOCATABLE
);
399 gdb_datadir
= relocate_gdb_directory (GDB_DATADIR
,
400 GDB_DATADIR_RELOCATABLE
);
402 #ifdef WITH_PYTHON_PATH
404 /* For later use in helping Python find itself. */
405 char *tmp
= concat (WITH_PYTHON_PATH
, SLASH_STRING
, "lib", NULL
);
407 python_libdir
= relocate_gdb_directory (tmp
, PYTHON_PATH_RELOCATABLE
);
413 add_substitute_path_rule (RELOC_SRCDIR
,
414 make_relative_prefix (argv
[0], BINDIR
,
418 /* There will always be an interpreter. Either the one passed into
419 this captured main, or one specified by the user at start up, or
420 the console. Initialize the interpreter to the one requested by
422 interpreter_p
= xstrdup (context
->interpreter_p
);
424 /* Parse arguments and options. */
427 /* When var field is 0, use flag field to record the equivalent
428 short option (or arbitrary numbers starting at 10 for those
429 with no equivalent). */
441 static struct option long_options
[] =
443 {"tui", no_argument
, 0, OPT_TUI
},
444 {"xdb", no_argument
, &xdb_commands
, 1},
445 {"dbx", no_argument
, &dbx_commands
, 1},
446 {"readnow", no_argument
, &readnow_symbol_files
, 1},
447 {"r", no_argument
, &readnow_symbol_files
, 1},
448 {"quiet", no_argument
, &quiet
, 1},
449 {"q", no_argument
, &quiet
, 1},
450 {"silent", no_argument
, &quiet
, 1},
451 {"nh", no_argument
, &inhibit_home_gdbinit
, 1},
452 {"nx", no_argument
, &inhibit_gdbinit
, 1},
453 {"n", no_argument
, &inhibit_gdbinit
, 1},
454 {"batch-silent", no_argument
, 0, 'B'},
455 {"batch", no_argument
, &batch_flag
, 1},
457 /* This is a synonym for "--annotate=1". --annotate is now
458 preferred, but keep this here for a long time because people
459 will be running emacses which use --fullname. */
460 {"fullname", no_argument
, 0, 'f'},
461 {"f", no_argument
, 0, 'f'},
463 {"annotate", required_argument
, 0, OPT_ANNOTATE
},
464 {"help", no_argument
, &print_help
, 1},
465 {"se", required_argument
, 0, OPT_SE
},
466 {"symbols", required_argument
, 0, 's'},
467 {"s", required_argument
, 0, 's'},
468 {"exec", required_argument
, 0, 'e'},
469 {"e", required_argument
, 0, 'e'},
470 {"core", required_argument
, 0, 'c'},
471 {"c", required_argument
, 0, 'c'},
472 {"pid", required_argument
, 0, 'p'},
473 {"p", required_argument
, 0, 'p'},
474 {"command", required_argument
, 0, 'x'},
475 {"eval-command", required_argument
, 0, 'X'},
476 {"version", no_argument
, &print_version
, 1},
477 {"x", required_argument
, 0, 'x'},
478 {"ex", required_argument
, 0, 'X'},
479 {"init-command", required_argument
, 0, OPT_IX
},
480 {"init-eval-command", required_argument
, 0, OPT_IEX
},
481 {"ix", required_argument
, 0, OPT_IX
},
482 {"iex", required_argument
, 0, OPT_IEX
},
484 {"tclcommand", required_argument
, 0, 'z'},
485 {"enable-external-editor", no_argument
, 0, 'y'},
486 {"editor-command", required_argument
, 0, 'w'},
488 {"ui", required_argument
, 0, 'i'},
489 {"interpreter", required_argument
, 0, 'i'},
490 {"i", required_argument
, 0, 'i'},
491 {"directory", required_argument
, 0, 'd'},
492 {"d", required_argument
, 0, 'd'},
493 {"data-directory", required_argument
, 0, 'D'},
494 {"cd", required_argument
, 0, OPT_CD
},
495 {"tty", required_argument
, 0, 't'},
496 {"baud", required_argument
, 0, 'b'},
497 {"b", required_argument
, 0, 'b'},
498 {"nw", no_argument
, NULL
, OPT_NOWINDOWS
},
499 {"nowindows", no_argument
, NULL
, OPT_NOWINDOWS
},
500 {"w", no_argument
, NULL
, OPT_WINDOWS
},
501 {"windows", no_argument
, NULL
, OPT_WINDOWS
},
502 {"statistics", no_argument
, 0, OPT_STATISTICS
},
503 {"write", no_argument
, &write_files
, 1},
504 {"args", no_argument
, &set_args
, 1},
505 {"l", required_argument
, 0, 'l'},
506 {"return-child-result", no_argument
, &return_child_result
, 1},
507 {0, no_argument
, 0, 0}
514 c
= getopt_long_only (argc
, argv
, "",
515 long_options
, &option_index
);
516 if (c
== EOF
|| set_args
)
519 /* Long option that takes an argument. */
520 if (c
== 0 && long_options
[option_index
].flag
== 0)
521 c
= long_options
[option_index
].val
;
526 /* Long option that just sets a flag. */
536 /* FIXME: what if the syntax is wrong (e.g. not digits)? */
537 annotation_level
= atoi (optarg
);
540 /* Enable the display of both time and space usage. */
541 set_display_time (1);
542 set_display_space (1);
545 /* --tui is equivalent to -i=tui. */
547 xfree (interpreter_p
);
548 interpreter_p
= xstrdup (INTERP_TUI
);
550 fprintf_unfiltered (gdb_stderr
,
551 _("%s: TUI mode is not supported\n"),
557 /* FIXME: cagney/2003-03-01: Not sure if this option is
558 actually useful, and if it is, what it should do. */
560 /* --windows is equivalent to -i=insight. */
561 xfree (interpreter_p
);
562 interpreter_p
= xstrdup (INTERP_INSIGHT
);
567 /* -nw is equivalent to -i=console. */
568 xfree (interpreter_p
);
569 interpreter_p
= xstrdup (INTERP_CONSOLE
);
573 annotation_level
= 1;
574 /* We have probably been invoked from emacs. Disable
592 struct cmdarg cmdarg
= { CMDARG_FILE
, optarg
};
594 VEC_safe_push (cmdarg_s
, cmdarg_vec
, &cmdarg
);
599 struct cmdarg cmdarg
= { CMDARG_COMMAND
, optarg
};
601 VEC_safe_push (cmdarg_s
, cmdarg_vec
, &cmdarg
);
606 struct cmdarg cmdarg
= { CMDARG_INIT_FILE
, optarg
};
608 VEC_safe_push (cmdarg_s
, cmdarg_vec
, &cmdarg
);
613 struct cmdarg cmdarg
= { CMDARG_INIT_COMMAND
, optarg
};
615 VEC_safe_push (cmdarg_s
, cmdarg_vec
, &cmdarg
);
619 batch_flag
= batch_silent
= 1;
620 gdb_stdout
= ui_file_new();
624 gdb_datadir
= xstrdup (optarg
);
625 gdb_datadir_provided
= 1;
630 extern int gdbtk_test (char *);
632 if (!gdbtk_test (optarg
))
634 fprintf_unfiltered (gdb_stderr
,
635 _("%s: unable to load "
636 "tclcommand file \"%s\""),
643 /* Backwards compatibility only. */
647 /* Set the external editor commands when gdb is farming out files
648 to be edited by another program. */
649 extern char *external_editor_command
;
651 external_editor_command
= xstrdup (optarg
);
656 xfree (interpreter_p
);
657 interpreter_p
= xstrdup (optarg
);
660 dirarg
[ndir
++] = optarg
;
664 dirarg
= (char **) xrealloc ((char *) dirarg
,
665 dirsize
* sizeof (*dirarg
));
679 i
= strtol (optarg
, &p
, 0);
680 if (i
== 0 && p
== optarg
)
682 /* Don't use *_filtered or warning() (which relies on
683 current_target) until after initialize_all_files(). */
687 _("warning: could not set baud rate to `%s'.\n"), optarg
);
697 i
= strtol (optarg
, &p
, 0);
698 if (i
== 0 && p
== optarg
)
700 /* Don't use *_filtered or warning() (which relies on
701 current_target) until after initialize_all_files(). */
703 fprintf_unfiltered (gdb_stderr
,
704 _("warning: could not set "
705 "timeout limit to `%s'.\n"), optarg
);
712 fprintf_unfiltered (gdb_stderr
,
713 _("Use `%s --help' for a "
714 "complete list of options.\n"),
720 /* If --help or --version, disable window interface. */
721 if (print_help
|| print_version
)
730 /* Initialize all files. Give the interpreter a chance to take
731 control of the console via the deprecated_init_ui_hook (). */
734 /* Now that gdb_init has created the initial inferior, we're in
735 position to set args for that inferior. */
738 /* The remaining options are the command-line options for the
739 inferior. The first one is the sym/exec file, and the rest
743 fprintf_unfiltered (gdb_stderr
,
744 _("%s: `--args' specified but "
745 "no program specified\n"),
749 symarg
= argv
[optind
];
750 execarg
= argv
[optind
];
752 set_inferior_args_vector (argc
- optind
, &argv
[optind
]);
756 /* OK, that's all the options. */
758 /* The first argument, if specified, is the name of the
762 symarg
= argv
[optind
];
763 execarg
= argv
[optind
];
767 /* If the user hasn't already specified a PID or the name of a
768 core file, then a second optional argument is allowed. If
769 present, this argument should be interpreted as either a
770 PID or a core file, whichever works. */
771 if (pidarg
== NULL
&& corearg
== NULL
&& optind
< argc
)
773 pid_or_core_arg
= argv
[optind
];
777 /* Any argument left on the command line is unexpected and
778 will be ignored. Inform the user. */
780 fprintf_unfiltered (gdb_stderr
,
781 _("Excess command line "
782 "arguments ignored. (%s%s)\n"),
784 (optind
== argc
- 1) ? "" : " ...");
787 /* Lookup gdbinit files. Note that the gdbinit file name may be
788 overriden during file initialization, so get_init_files should be
789 called after gdb_init. */
790 get_init_files (&system_gdbinit
, &home_gdbinit
, &local_gdbinit
);
792 /* Do these (and anything which might call wrap_here or *_filtered)
793 after initialize_all_files() but before the interpreter has been
794 installed. Otherwize the help/version messages will be eaten by
795 the interpreter's output handler. */
799 print_gdb_version (gdb_stdout
);
801 printf_filtered ("\n");
807 print_gdb_help (gdb_stdout
);
808 fputs_unfiltered ("\n", gdb_stdout
);
812 /* FIXME: cagney/2003-02-03: The big hack (part 1 of 2) that lets
813 GDB retain the old MI1 interpreter startup behavior. Output the
814 copyright message before the interpreter is installed. That way
815 it isn't encapsulated in MI output. */
816 if (!quiet
&& strcmp (interpreter_p
, INTERP_MI1
) == 0)
818 /* Print all the junk at the top, with trailing "..." if we are
819 about to read a symbol file (possibly slowly). */
820 print_gdb_version (gdb_stdout
);
822 printf_filtered ("..");
824 printf_filtered ("\n");
825 gdb_flush (gdb_stdout
); /* Force to screen during slow
829 /* Install the default UI. All the interpreters should have had a
830 look at things by now. Initialize the default interpreter. */
834 struct interp
*interp
= interp_lookup (interpreter_p
);
837 error (_("Interpreter `%s' unrecognized"), interpreter_p
);
839 if (!interp_set (interp
, 1))
841 fprintf_unfiltered (gdb_stderr
,
842 "Interpreter `%s' failed to initialize.\n",
848 /* FIXME: cagney/2003-02-03: The big hack (part 2 of 2) that lets
849 GDB retain the old MI1 interpreter startup behavior. Output the
850 copyright message after the interpreter is installed when it is
851 any sane interpreter. */
852 if (!quiet
&& !current_interp_named_p (INTERP_MI1
))
854 /* Print all the junk at the top, with trailing "..." if we are
855 about to read a symbol file (possibly slowly). */
856 print_gdb_version (gdb_stdout
);
858 printf_filtered ("..");
860 printf_filtered ("\n");
861 gdb_flush (gdb_stdout
); /* Force to screen during slow
865 /* Set off error and warning messages with a blank line. */
866 error_pre_print
= "\n";
867 quit_pre_print
= error_pre_print
;
868 warning_pre_print
= _("\nwarning: ");
870 /* Read and execute the system-wide gdbinit file, if it exists.
871 This is done *before* all the command line arguments are
872 processed; it sets global parameters, which are independent of
873 what file you are debugging or what directory you are in. */
874 if (system_gdbinit
&& !inhibit_gdbinit
)
875 catch_command_errors (source_script
, system_gdbinit
, 0, RETURN_MASK_ALL
);
877 /* Read and execute $HOME/.gdbinit file, if it exists. This is done
878 *before* all the command line arguments are processed; it sets
879 global parameters, which are independent of what file you are
880 debugging or what directory you are in. */
882 if (home_gdbinit
&& !inhibit_gdbinit
&& !inhibit_home_gdbinit
)
883 catch_command_errors (source_script
, home_gdbinit
, 0, RETURN_MASK_ALL
);
885 /* Process '-ix' and '-iex' options early. */
886 for (i
= 0; VEC_iterate (cmdarg_s
, cmdarg_vec
, i
, cmdarg_p
); i
++)
887 switch (cmdarg_p
->type
)
889 case CMDARG_INIT_FILE
:
890 catch_command_errors (source_script
, cmdarg_p
->string
,
891 !batch_flag
, RETURN_MASK_ALL
);
893 case CMDARG_INIT_COMMAND
:
894 catch_command_errors (execute_command
, cmdarg_p
->string
,
895 !batch_flag
, RETURN_MASK_ALL
);
899 /* Now perform all the actions indicated by the arguments. */
902 catch_command_errors (cd_command
, cdarg
, 0, RETURN_MASK_ALL
);
905 for (i
= 0; i
< ndir
; i
++)
906 catch_command_errors (directory_switch
, dirarg
[i
], 0, RETURN_MASK_ALL
);
909 /* Skip auto-loading section-specified scripts until we've sourced
910 local_gdbinit (which is often used to augment the source search
912 save_auto_load
= global_auto_load
;
913 global_auto_load
= 0;
917 && strcmp (execarg
, symarg
) == 0)
919 /* The exec file and the symbol-file are the same. If we can't
920 open it, better only print one error message.
921 catch_command_errors returns non-zero on success! */
922 if (catch_command_errors (exec_file_attach
, execarg
,
923 !batch_flag
, RETURN_MASK_ALL
))
924 catch_command_errors (symbol_file_add_main
, symarg
,
925 !batch_flag
, RETURN_MASK_ALL
);
930 catch_command_errors (exec_file_attach
, execarg
,
931 !batch_flag
, RETURN_MASK_ALL
);
933 catch_command_errors (symbol_file_add_main
, symarg
,
934 !batch_flag
, RETURN_MASK_ALL
);
937 if (corearg
&& pidarg
)
938 error (_("Can't attach to process and specify "
939 "a core file at the same time."));
942 catch_command_errors (core_file_command
, corearg
,
943 !batch_flag
, RETURN_MASK_ALL
);
944 else if (pidarg
!= NULL
)
945 catch_command_errors (attach_command
, pidarg
,
946 !batch_flag
, RETURN_MASK_ALL
);
947 else if (pid_or_core_arg
)
949 /* The user specified 'gdb program pid' or gdb program core'.
950 If pid_or_core_arg's first character is a digit, try attach
951 first and then corefile. Otherwise try just corefile. */
953 if (isdigit (pid_or_core_arg
[0]))
955 if (catch_command_errors (attach_command
, pid_or_core_arg
,
956 !batch_flag
, RETURN_MASK_ALL
) == 0)
957 catch_command_errors (core_file_command
, pid_or_core_arg
,
958 !batch_flag
, RETURN_MASK_ALL
);
960 else /* Can't be a pid, better be a corefile. */
961 catch_command_errors (core_file_command
, pid_or_core_arg
,
962 !batch_flag
, RETURN_MASK_ALL
);
966 set_inferior_io_terminal (ttyarg
);
968 /* Error messages should no longer be distinguished with extra output. */
969 error_pre_print
= NULL
;
970 quit_pre_print
= NULL
;
971 warning_pre_print
= _("warning: ");
973 /* Read the .gdbinit file in the current directory, *if* it isn't
974 the same as the $HOME/.gdbinit file (it should exist, also). */
977 auto_load_local_gdbinit_pathname
= gdb_realpath (local_gdbinit
);
979 if (!inhibit_gdbinit
&& auto_load_local_gdbinit
980 && file_is_auto_load_safe (local_gdbinit
,
981 _("auto-load: Loading .gdbinit "
985 auto_load_local_gdbinit_loaded
= 1;
987 catch_command_errors (source_script
, local_gdbinit
, 0,
992 /* Now that all .gdbinit's have been read and all -d options have been
993 processed, we can read any scripts mentioned in SYMARG.
994 We wait until now because it is common to add to the source search
995 path in local_gdbinit. */
996 global_auto_load
= save_auto_load
;
997 ALL_OBJFILES (objfile
)
998 load_auto_scripts_for_objfile (objfile
);
1000 /* Process '-x' and '-ex' options. */
1001 for (i
= 0; VEC_iterate (cmdarg_s
, cmdarg_vec
, i
, cmdarg_p
); i
++)
1002 switch (cmdarg_p
->type
)
1005 catch_command_errors (source_script
, cmdarg_p
->string
,
1006 !batch_flag
, RETURN_MASK_ALL
);
1008 case CMDARG_COMMAND
:
1009 catch_command_errors (execute_command
, cmdarg_p
->string
,
1010 !batch_flag
, RETURN_MASK_ALL
);
1014 /* Read in the old history after all the command files have been
1020 /* We have hit the end of the batch file. */
1021 quit_force (NULL
, 0);
1024 /* Show time and/or space usage. */
1025 do_cleanups (pre_stat_chain
);
1027 /* NOTE: cagney/1999-11-07: There is probably no reason for not
1028 moving this loop and the code found in captured_command_loop()
1029 into the command_loop() proper. The main thing holding back that
1030 change - SET_TOP_LEVEL() - has been eliminated. */
1033 catch_errors (captured_command_loop
, 0, "", RETURN_MASK_ALL
);
1035 /* No exit -- exit is through quit_command. */
1039 gdb_main (struct captured_main_args
*args
)
1041 use_windows
= args
->use_windows
;
1042 catch_errors (captured_main
, args
, "", RETURN_MASK_ALL
);
1043 /* The only way to end up here is by an error (normal exit is
1044 handled by quit_force()), hence always return an error status. */
1049 /* Don't use *_filtered for printing help. We don't want to prompt
1050 for continue no matter how small the screen or how much we're going
1054 print_gdb_help (struct ui_file
*stream
)
1056 char *system_gdbinit
;
1058 char *local_gdbinit
;
1060 get_init_files (&system_gdbinit
, &home_gdbinit
, &local_gdbinit
);
1062 fputs_unfiltered (_("\
1063 This is the GNU debugger. Usage:\n\n\
1064 gdb [options] [executable-file [core-file or process-id]]\n\
1065 gdb [options] --args executable-file [inferior-arguments ...]\n\n\
1068 fputs_unfiltered (_("\
1069 --args Arguments after executable-file are passed to inferior\n\
1071 fputs_unfiltered (_("\
1072 -b BAUDRATE Set serial port baud rate used for remote debugging.\n\
1073 --batch Exit after processing options.\n\
1074 --batch-silent As for --batch, but suppress all gdb stdout output.\n\
1075 --return-child-result\n\
1076 GDB exit code will be the child's exit code.\n\
1077 --cd=DIR Change current directory to DIR.\n\
1078 --command=FILE, -x Execute GDB commands from FILE.\n\
1079 --eval-command=COMMAND, -ex\n\
1080 Execute a single GDB command.\n\
1081 May be used multiple times and in conjunction\n\
1083 --init-command=FILE, -ix Like -x but execute it before loading inferior.\n\
1084 --init-eval-command=COMMAND, -iex Like -ex but before loading inferior.\n\
1085 --core=COREFILE Analyze the core dump COREFILE.\n\
1086 --pid=PID Attach to running process PID.\n\
1088 fputs_unfiltered (_("\
1089 --dbx DBX compatibility mode.\n\
1090 --directory=DIR Search for source files in DIR.\n\
1091 --exec=EXECFILE Use EXECFILE as the executable.\n\
1092 --fullname Output information used by emacs-GDB interface.\n\
1093 --help Print this message.\n\
1095 fputs_unfiltered (_("\
1096 --interpreter=INTERP\n\
1097 Select a specific interpreter / user interface\n\
1099 fputs_unfiltered (_("\
1100 -l TIMEOUT Set timeout in seconds for remote debugging.\n\
1101 --nw Do not use a window interface.\n\
1102 --nx Do not read any "), stream
);
1103 fputs_unfiltered (gdbinit
, stream
);
1104 fputs_unfiltered (_(" files.\n\
1105 --nh Do not read "), stream
);
1106 fputs_unfiltered (gdbinit
, stream
);
1107 fputs_unfiltered (_(" file from home directory.\n\
1108 --quiet Do not print version number on startup.\n\
1109 --readnow Fully read symbol files on first access.\n\
1111 fputs_unfiltered (_("\
1112 --se=FILE Use FILE as symbol file and executable file.\n\
1113 --symbols=SYMFILE Read symbols from SYMFILE.\n\
1114 --tty=TTY Use TTY for input/output by the program being debugged.\n\
1117 fputs_unfiltered (_("\
1118 --tui Use a terminal user interface.\n\
1121 fputs_unfiltered (_("\
1122 --version Print version information and then exit.\n\
1123 -w Use a window interface.\n\
1124 --write Set writing into executable and core files.\n\
1125 --xdb XDB compatibility mode.\n\
1127 fputs_unfiltered (_("\n\
1128 At startup, GDB reads the following init files and executes their commands:\n\
1131 fprintf_unfiltered (stream
, _("\
1132 * system-wide init file: %s\n\
1133 "), system_gdbinit
);
1135 fprintf_unfiltered (stream
, _("\
1136 * user-specific init file: %s\n\
1139 fprintf_unfiltered (stream
, _("\
1140 * local init file (see also 'set auto-load local-gdbinit'): ./%s\n\
1142 fputs_unfiltered (_("\n\
1143 For more information, type \"help\" from within GDB, or consult the\n\
1144 GDB manual (available as on-line info or a printed manual).\n\
1146 if (REPORT_BUGS_TO
[0] && stream
== gdb_stdout
)
1147 fprintf_unfiltered (stream
, _("\
1148 Report bugs to \"%s\".\n\
1149 "), REPORT_BUGS_TO
);