Automatic date update in version.in
[binutils-gdb.git] / gdb / main.c
blob17826fae95e3c0eeb917e2745c24830ec4861221
1 /* Top level stuff for GDB, the GNU debugger.
3 Copyright (C) 1986-2024 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/>. */
20 #include "defs.h"
21 #include "top.h"
22 #include "ui.h"
23 #include "target.h"
24 #include "inferior.h"
25 #include "symfile.h"
26 #include "gdbcore.h"
27 #include "getopt.h"
29 #include <sys/types.h>
30 #include <sys/stat.h>
31 #include <ctype.h>
32 #include "gdbsupport/event-loop.h"
33 #include "ui-out.h"
35 #include "interps.h"
36 #include "main.h"
37 #include "source.h"
38 #include "cli/cli-cmds.h"
39 #include "objfiles.h"
40 #include "auto-load.h"
41 #include "maint.h"
43 #include "filenames.h"
44 #include "gdbsupport/filestuff.h"
45 #include <signal.h>
46 #include "event-top.h"
47 #include "infrun.h"
48 #include "gdbsupport/signals-state-save-restore.h"
49 #include <algorithm>
50 #include <vector>
51 #include "gdbsupport/pathstuff.h"
52 #include "cli/cli-style.h"
53 #ifdef GDBTK
54 #include "gdbtk/generic/gdbtk.h"
55 #endif
56 #include "gdbsupport/alt-stack.h"
57 #include "observable.h"
58 #include "serial.h"
59 #include "cli-out.h"
61 /* The selected interpreter. */
62 std::string interpreter_p;
64 /* System root path, used to find libraries etc. */
65 std::string gdb_sysroot;
67 /* GDB datadir, used to store data files. */
68 std::string gdb_datadir;
70 /* Non-zero if GDB_DATADIR was provided on the command line.
71 This doesn't track whether data-directory is set later from the
72 command line, but we don't reread system.gdbinit when that happens. */
73 static int gdb_datadir_provided = 0;
75 /* If gdb was configured with --with-python=/path,
76 the possibly relocated path to python's lib directory. */
77 std::string python_libdir;
79 /* Target IO streams. */
80 struct ui_file *gdb_stdtargin;
81 struct ui_file *gdb_stdtarg;
82 struct ui_file *gdb_stdtargerr;
84 /* True if --batch or --batch-silent was seen. */
85 int batch_flag = 0;
87 /* Support for the --batch-silent option. */
88 int batch_silent = 0;
90 /* Support for --return-child-result option.
91 Set the default to -1 to return error in the case
92 that the program does not run or does not complete. */
93 int return_child_result = 0;
94 int return_child_result_value = -1;
97 /* GDB as it has been invoked from the command line (i.e. argv[0]). */
98 static char *gdb_program_name;
100 static void print_gdb_help (struct ui_file *);
102 /* Set the data-directory parameter to NEW_DATADIR.
103 If NEW_DATADIR is not a directory then a warning is printed.
104 We don't signal an error for backward compatibility. */
106 void
107 set_gdb_data_directory (const char *new_datadir)
109 struct stat st;
111 if (stat (new_datadir, &st) < 0)
112 warning_filename_and_errno (new_datadir, errno);
113 else if (!S_ISDIR (st.st_mode))
114 warning (_("%ps is not a directory."),
115 styled_string (file_name_style.style (), new_datadir));
117 gdb_datadir = gdb_realpath (new_datadir).get ();
119 /* gdb_realpath won't return an absolute path if the path doesn't exist,
120 but we still want to record an absolute path here. If the user entered
121 "../foo" and "../foo" doesn't exist then we'll record $(pwd)/../foo which
122 isn't canonical, but that's ok. */
123 if (!IS_ABSOLUTE_PATH (gdb_datadir.c_str ()))
124 gdb_datadir = gdb_abspath (gdb_datadir.c_str ());
127 /* Relocate a file or directory. PROGNAME is the name by which gdb
128 was invoked (i.e., argv[0]). INITIAL is the default value for the
129 file or directory. RELOCATABLE is true if the value is relocatable,
130 false otherwise. This may return an empty string under the same
131 conditions as make_relative_prefix returning NULL. */
133 static std::string
134 relocate_path (const char *progname, const char *initial, bool relocatable)
136 if (relocatable)
138 gdb::unique_xmalloc_ptr<char> str (make_relative_prefix (progname,
139 BINDIR,
140 initial));
141 if (str != nullptr)
142 return str.get ();
143 return std::string ();
145 return initial;
148 /* Like relocate_path, but specifically checks for a directory.
149 INITIAL is relocated according to the rules of relocate_path. If
150 the result is a directory, it is used; otherwise, INITIAL is used.
151 The chosen directory is then canonicalized using lrealpath. */
153 std::string
154 relocate_gdb_directory (const char *initial, bool relocatable)
156 std::string dir = relocate_path (gdb_program_name, initial, relocatable);
157 if (!dir.empty ())
159 struct stat s;
161 if (stat (dir.c_str (), &s) != 0 || !S_ISDIR (s.st_mode))
163 dir.clear ();
166 if (dir.empty ())
167 dir = initial;
169 /* Canonicalize the directory. */
170 if (!dir.empty ())
172 gdb::unique_xmalloc_ptr<char> canon_sysroot (lrealpath (dir.c_str ()));
174 if (canon_sysroot)
175 dir = canon_sysroot.get ();
178 return dir;
181 /* Given a gdbinit path in FILE, adjusts it according to the gdb_datadir
182 parameter if it is in the data dir, or passes it through relocate_path
183 otherwise. */
185 static std::string
186 relocate_file_path_maybe_in_datadir (const std::string &file,
187 bool relocatable)
189 size_t datadir_len = strlen (GDB_DATADIR);
191 std::string relocated_path;
193 /* If SYSTEM_GDBINIT lives in data-directory, and data-directory
194 has been provided, search for SYSTEM_GDBINIT there. */
195 if (gdb_datadir_provided
196 && datadir_len < file.length ()
197 && filename_ncmp (file.c_str (), GDB_DATADIR, datadir_len) == 0
198 && IS_DIR_SEPARATOR (file[datadir_len]))
200 /* Append the part of SYSTEM_GDBINIT that follows GDB_DATADIR
201 to gdb_datadir. */
203 size_t start = datadir_len;
204 for (; IS_DIR_SEPARATOR (file[start]); ++start)
206 relocated_path = gdb_datadir + SLASH_STRING + file.substr (start);
208 else
210 relocated_path = relocate_path (gdb_program_name, file.c_str (),
211 relocatable);
213 return relocated_path;
216 /* A class to wrap up the logic for finding the three different types of
217 initialisation files GDB uses, system wide, home directory, and current
218 working directory. */
220 class gdb_initfile_finder
222 public:
223 /* Constructor. Finds initialisation files named FILENAME in the home
224 directory or local (current working) directory. System initialisation
225 files are found in both SYSTEM_FILENAME and SYSTEM_DIRNAME if these
226 are not nullptr (either or both can be). The matching *_RELOCATABLE
227 flag is passed through to RELOCATE_FILE_PATH_MAYBE_IN_DATADIR.
229 If FILENAME starts with a '.' then when looking in the home directory
230 this first '.' can be ignored in some cases. */
231 explicit gdb_initfile_finder (const char *filename,
232 const char *system_filename,
233 bool system_filename_relocatable,
234 const char *system_dirname,
235 bool system_dirname_relocatable,
236 bool lookup_local_file)
238 struct stat s;
240 if (system_filename != nullptr && system_filename[0] != '\0')
242 std::string relocated_filename
243 = relocate_file_path_maybe_in_datadir (system_filename,
244 system_filename_relocatable);
245 if (!relocated_filename.empty ()
246 && stat (relocated_filename.c_str (), &s) == 0)
247 m_system_files.push_back (relocated_filename);
250 if (system_dirname != nullptr && system_dirname[0] != '\0')
252 std::string relocated_dirname
253 = relocate_file_path_maybe_in_datadir (system_dirname,
254 system_dirname_relocatable);
255 if (!relocated_dirname.empty ())
257 gdb_dir_up dir (opendir (relocated_dirname.c_str ()));
258 if (dir != nullptr)
260 std::vector<std::string> files;
261 while (true)
263 struct dirent *ent = readdir (dir.get ());
264 if (ent == nullptr)
265 break;
266 std::string name (ent->d_name);
267 if (name == "." || name == "..")
268 continue;
269 /* ent->d_type is not available on all systems
270 (e.g. mingw, Solaris), so we have to call stat(). */
271 std::string tmp_filename
272 = relocated_dirname + SLASH_STRING + name;
273 if (stat (tmp_filename.c_str (), &s) != 0
274 || !S_ISREG (s.st_mode))
275 continue;
276 const struct extension_language_defn *extlang
277 = get_ext_lang_of_file (tmp_filename.c_str ());
278 /* We effectively don't support "set script-extension
279 off/soft", because we are loading system init files
280 here, so it does not really make sense to depend on
281 a setting. */
282 if (extlang != nullptr && ext_lang_present_p (extlang))
283 files.push_back (std::move (tmp_filename));
285 std::sort (files.begin (), files.end ());
286 m_system_files.insert (m_system_files.end (),
287 files.begin (), files.end ());
292 /* If the .gdbinit file in the current directory is the same as
293 the $HOME/.gdbinit file, it should not be sourced. homebuf
294 and cwdbuf are used in that purpose. Make sure that the stats
295 are zero in case one of them fails (this guarantees that they
296 won't match if either exists). */
298 struct stat homebuf, cwdbuf;
299 memset (&homebuf, 0, sizeof (struct stat));
300 memset (&cwdbuf, 0, sizeof (struct stat));
302 m_home_file = find_gdb_home_config_file (filename, &homebuf);
304 if (lookup_local_file && stat (filename, &cwdbuf) == 0)
306 if (m_home_file.empty ()
307 || memcmp ((char *) &homebuf, (char *) &cwdbuf,
308 sizeof (struct stat)))
309 m_local_file = filename;
313 DISABLE_COPY_AND_ASSIGN (gdb_initfile_finder);
315 /* Return a list of system initialisation files. The list could be
316 empty. */
317 const std::vector<std::string> &system_files () const
318 { return m_system_files; }
320 /* Return the path to the home initialisation file. The string can be
321 empty if there is no such file. */
322 const std::string &home_file () const
323 { return m_home_file; }
325 /* Return the path to the local initialisation file. The string can be
326 empty if there is no such file. */
327 const std::string &local_file () const
328 { return m_local_file; }
330 private:
332 /* Vector of all system init files in the order they should be processed.
333 Could be empty. */
334 std::vector<std::string> m_system_files;
336 /* Initialization file from the home directory. Could be the empty
337 string if there is no such file found. */
338 std::string m_home_file;
340 /* Initialization file from the current working directory. Could be the
341 empty string if there is no such file found. */
342 std::string m_local_file;
345 /* Compute the locations of init files that GDB should source and return
346 them in SYSTEM_GDBINIT, HOME_GDBINIT, LOCAL_GDBINIT. The SYSTEM_GDBINIT
347 can be returned as an empty vector, and HOME_GDBINIT and LOCAL_GDBINIT
348 can be returned as empty strings if there is no init file of that
349 type. */
351 static void
352 get_init_files (std::vector<std::string> *system_gdbinit,
353 std::string *home_gdbinit,
354 std::string *local_gdbinit)
356 /* Cache the file lookup object so we only actually search for the files
357 once. */
358 static std::optional<gdb_initfile_finder> init_files;
359 if (!init_files.has_value ())
360 init_files.emplace (GDBINIT, SYSTEM_GDBINIT, SYSTEM_GDBINIT_RELOCATABLE,
361 SYSTEM_GDBINIT_DIR, SYSTEM_GDBINIT_DIR_RELOCATABLE,
362 true);
364 *system_gdbinit = init_files->system_files ();
365 *home_gdbinit = init_files->home_file ();
366 *local_gdbinit = init_files->local_file ();
369 /* Compute the location of the early init file GDB should source and return
370 it in HOME_GDBEARLYINIT. HOME_GDBEARLYINIT could be returned as an
371 empty string if there is no early init file found. */
373 static void
374 get_earlyinit_files (std::string *home_gdbearlyinit)
376 /* Cache the file lookup object so we only actually search for the files
377 once. */
378 static std::optional<gdb_initfile_finder> init_files;
379 if (!init_files.has_value ())
380 init_files.emplace (GDBEARLYINIT, nullptr, false, nullptr, false, false);
382 *home_gdbearlyinit = init_files->home_file ();
385 /* Start up the event loop. This is the entry point to the event loop
386 from the command loop. */
388 static void
389 start_event_loop ()
391 /* Loop until there is nothing to do. This is the entry point to
392 the event loop engine. gdb_do_one_event will process one event
393 for each invocation. It blocks waiting for an event and then
394 processes it. */
395 while (1)
397 int result = 0;
401 result = gdb_do_one_event ();
403 catch (const gdb_exception_forced_quit &ex)
405 throw;
407 catch (const gdb_exception &ex)
409 exception_print (gdb_stderr, ex);
411 /* If any exception escaped to here, we better enable
412 stdin. Otherwise, any command that calls async_disable_stdin,
413 and then throws, will leave stdin inoperable. */
414 SWITCH_THRU_ALL_UIS ()
416 async_enable_stdin ();
418 /* If we long-jumped out of do_one_event, we probably didn't
419 get around to resetting the prompt, which leaves readline
420 in a messed-up state. Reset it here. */
421 current_ui->prompt_state = PROMPT_NEEDED;
422 top_level_interpreter ()->on_command_error ();
423 /* This call looks bizarre, but it is required. If the user
424 entered a command that caused an error,
425 after_char_processing_hook won't be called from
426 rl_callback_read_char_wrapper. Using a cleanup there
427 won't work, since we want this function to be called
428 after a new prompt is printed. */
429 if (after_char_processing_hook)
430 (*after_char_processing_hook) ();
431 /* Maybe better to set a flag to be checked somewhere as to
432 whether display the prompt or not. */
435 if (result < 0)
436 break;
439 /* We are done with the event loop. There are no more event sources
440 to listen to. So we exit GDB. */
441 return;
444 /* Call command_loop. */
446 /* Prevent inlining this function for the benefit of GDB's selftests
447 in the testsuite. Those tests want to run GDB under GDB and stop
448 here. */
449 static void captured_command_loop () __attribute__((noinline));
451 static void
452 captured_command_loop ()
454 struct ui *ui = current_ui;
456 /* Top-level execution commands can be run in the background from
457 here on. */
458 current_ui->async = 1;
460 /* Give the interpreter a chance to print a prompt, if necessary */
461 if (ui->prompt_state != PROMPT_BLOCKED)
462 top_level_interpreter ()->pre_command_loop ();
464 /* Now it's time to start the event loop. */
465 start_event_loop ();
467 /* If the command_loop returned, normally (rather than threw an
468 error) we try to quit. If the quit is aborted, our caller
469 catches the signal and restarts the command loop. */
470 quit_command (NULL, ui->instream == ui->stdin_stream);
473 /* Handle command errors thrown from within catch_command_errors. */
475 static int
476 handle_command_errors (const struct gdb_exception &e)
478 if (e.reason < 0)
480 exception_print (gdb_stderr, e);
482 /* If any exception escaped to here, we better enable stdin.
483 Otherwise, any command that calls async_disable_stdin, and
484 then throws, will leave stdin inoperable. */
485 async_enable_stdin ();
486 return 0;
488 return 1;
491 /* Type of the command callback passed to the const
492 catch_command_errors. */
494 typedef void (catch_command_errors_const_ftype) (const char *, int);
496 /* Wrap calls to commands run before the event loop is started. */
498 static int
499 catch_command_errors (catch_command_errors_const_ftype command,
500 const char *arg, int from_tty,
501 bool do_bp_actions = false)
505 int was_sync = current_ui->prompt_state == PROMPT_BLOCKED;
507 command (arg, from_tty);
509 maybe_wait_sync_command_done (was_sync);
511 /* Do any commands attached to breakpoint we stopped at. */
512 if (do_bp_actions)
513 bpstat_do_actions ();
515 catch (const gdb_exception_forced_quit &e)
517 quit_force (NULL, 0);
519 catch (const gdb_exception &e)
521 return handle_command_errors (e);
524 return 1;
527 /* Adapter for symbol_file_add_main that translates 'from_tty' to a
528 symfile_add_flags. */
530 static void
531 symbol_file_add_main_adapter (const char *arg, int from_tty)
533 symfile_add_flags add_flags = 0;
535 if (from_tty)
536 add_flags |= SYMFILE_VERBOSE;
538 symbol_file_add_main (arg, add_flags);
541 /* Perform validation of the '--readnow' and '--readnever' flags. */
543 static void
544 validate_readnow_readnever ()
546 if (readnever_symbol_files && readnow_symbol_files)
548 error (_("%s: '--readnow' and '--readnever' cannot be "
549 "specified simultaneously"),
550 gdb_program_name);
554 /* Type of this option. */
555 enum cmdarg_kind
557 /* Option type -x. */
558 CMDARG_FILE,
560 /* Option type -ex. */
561 CMDARG_COMMAND,
563 /* Option type -ix. */
564 CMDARG_INIT_FILE,
566 /* Option type -iex. */
567 CMDARG_INIT_COMMAND,
569 /* Option type -eix. */
570 CMDARG_EARLYINIT_FILE,
572 /* Option type -eiex. */
573 CMDARG_EARLYINIT_COMMAND
576 /* Arguments of --command option and its counterpart. */
577 struct cmdarg
579 cmdarg (cmdarg_kind type_, char *string_)
580 : type (type_), string (string_)
583 /* Type of this option. */
584 enum cmdarg_kind type;
586 /* Value of this option - filename or the GDB command itself. String memory
587 is not owned by this structure despite it is 'const'. */
588 char *string;
591 /* From CMDARG_VEC execute command files (matching FILE_TYPE) or commands
592 (matching CMD_TYPE). Update the value in *RET if and scripts or
593 commands are executed. */
595 static void
596 execute_cmdargs (const std::vector<struct cmdarg> *cmdarg_vec,
597 cmdarg_kind file_type, cmdarg_kind cmd_type,
598 int *ret)
600 for (const auto &cmdarg_p : *cmdarg_vec)
602 if (cmdarg_p.type == file_type)
603 *ret = catch_command_errors (source_script, cmdarg_p.string,
604 !batch_flag);
605 else if (cmdarg_p.type == cmd_type)
606 *ret = catch_command_errors (execute_command, cmdarg_p.string,
607 !batch_flag, true);
611 static void
612 captured_main_1 (struct captured_main_args *context)
614 int argc = context->argc;
615 char **argv = context->argv;
617 static int quiet = 0;
618 static int set_args = 0;
619 static int inhibit_home_gdbinit = 0;
621 /* Pointers to various arguments from command line. */
622 char *symarg = NULL;
623 char *execarg = NULL;
624 char *pidarg = NULL;
625 char *corearg = NULL;
626 char *pid_or_core_arg = NULL;
627 char *cdarg = NULL;
628 char *ttyarg = NULL;
630 /* These are static so that we can take their address in an
631 initializer. */
632 static int print_help;
633 static int print_version;
634 static int print_configuration;
636 /* Pointers to all arguments of --command option. */
637 std::vector<struct cmdarg> cmdarg_vec;
639 /* All arguments of --directory option. */
640 std::vector<char *> dirarg;
642 int i;
643 int save_auto_load;
644 int ret = 1;
646 const char *no_color = getenv ("NO_COLOR");
647 if (no_color != nullptr && *no_color != '\0')
648 cli_styling = false;
650 #ifdef HAVE_USEFUL_SBRK
651 /* Set this before constructing scoped_command_stats. */
652 lim_at_start = (char *) sbrk (0);
653 #endif
655 scoped_command_stats stat_reporter (false);
657 #if defined (HAVE_SETLOCALE) && defined (HAVE_LC_MESSAGES)
658 setlocale (LC_MESSAGES, "");
659 #endif
660 #if defined (HAVE_SETLOCALE)
661 setlocale (LC_CTYPE, "");
662 #endif
663 #ifdef ENABLE_NLS
664 bindtextdomain (PACKAGE, LOCALEDIR);
665 textdomain (PACKAGE);
666 #endif
668 notice_open_fds ();
670 #ifdef __MINGW32__
671 /* Ensure stderr is unbuffered. A Cygwin pty or pipe is implemented
672 as a Windows pipe, and Windows buffers on pipes. */
673 setvbuf (stderr, NULL, _IONBF, BUFSIZ);
674 #endif
676 /* Note: `error' cannot be called before this point, because the
677 caller will crash when trying to print the exception. */
678 main_ui = new ui (stdin, stdout, stderr);
679 current_ui = main_ui;
681 gdb_stdtarg = gdb_stderr;
682 gdb_stdtargerr = gdb_stderr;
683 gdb_stdtargin = gdb_stdin;
685 /* Put a CLI based uiout in place early. If the early initialization
686 files trigger any I/O then it isn't hard to reach parts of GDB that
687 assume current_uiout is not nullptr. Maybe we should just install the
688 CLI interpreter initially, then switch to the application requested
689 interpreter later? But that would (potentially) result in an
690 interpreter being instantiated "just in case". For now this feels
691 like the least effort way to protect GDB from crashing. */
692 auto temp_uiout = std::make_unique<cli_ui_out> (gdb_stdout);
693 current_uiout = temp_uiout.get ();
695 gdb_bfd_init ();
697 #ifdef __MINGW32__
698 /* On Windows, argv[0] is not necessarily set to absolute form when
699 GDB is found along PATH, without which relocation doesn't work. */
700 gdb_program_name = windows_get_absolute_argv0 (argv[0]);
701 #else
702 gdb_program_name = xstrdup (argv[0]);
703 #endif
705 /* Prefix warning messages with the command name. */
706 gdb::unique_xmalloc_ptr<char> tmp_warn_preprint
707 = xstrprintf ("%s: warning: ", gdb_program_name);
708 warning_pre_print = tmp_warn_preprint.get ();
710 current_directory = getcwd (NULL, 0);
711 if (current_directory == NULL)
712 perror_warning_with_name (_("error finding working directory"));
714 /* Set the sysroot path. */
715 gdb_sysroot = relocate_gdb_directory (TARGET_SYSTEM_ROOT,
716 TARGET_SYSTEM_ROOT_RELOCATABLE);
718 if (gdb_sysroot.empty ())
719 gdb_sysroot = TARGET_SYSROOT_PREFIX;
721 debug_file_directory
722 = relocate_gdb_directory (DEBUGDIR, DEBUGDIR_RELOCATABLE);
724 #ifdef ADDITIONAL_DEBUG_DIRS
725 debug_file_directory = (debug_file_directory + DIRNAME_SEPARATOR
726 + ADDITIONAL_DEBUG_DIRS);
727 #endif
729 gdb_datadir = relocate_gdb_directory (GDB_DATADIR,
730 GDB_DATADIR_RELOCATABLE);
732 #ifdef WITH_PYTHON_LIBDIR
733 python_libdir = relocate_gdb_directory (WITH_PYTHON_LIBDIR,
734 PYTHON_LIBDIR_RELOCATABLE);
735 #endif
737 #ifdef RELOC_SRCDIR
738 add_substitute_path_rule (RELOC_SRCDIR,
739 make_relative_prefix (gdb_program_name, BINDIR,
740 RELOC_SRCDIR));
741 #endif
743 /* There will always be an interpreter. Either the one passed into
744 this captured main, or one specified by the user at start up, or
745 the console. Initialize the interpreter to the one requested by
746 the application. */
747 interpreter_p = context->interpreter_p;
749 /* Parse arguments and options. */
751 int c;
752 /* When var field is 0, use flag field to record the equivalent
753 short option (or arbitrary numbers starting at 10 for those
754 with no equivalent). */
755 enum {
756 OPT_SE = 10,
757 OPT_CD,
758 OPT_ANNOTATE,
759 OPT_STATISTICS,
760 OPT_TUI,
761 OPT_NOWINDOWS,
762 OPT_WINDOWS,
763 OPT_IX,
764 OPT_IEX,
765 OPT_EIX,
766 OPT_EIEX,
767 OPT_READNOW,
768 OPT_READNEVER
770 /* This struct requires int* in the struct, but write_files is a bool.
771 So use this temporary int that we write back after argument parsing. */
772 int write_files_1 = 0;
773 static struct option long_options[] =
775 {"tui", no_argument, 0, OPT_TUI},
776 {"readnow", no_argument, NULL, OPT_READNOW},
777 {"readnever", no_argument, NULL, OPT_READNEVER},
778 {"r", no_argument, NULL, OPT_READNOW},
779 {"quiet", no_argument, &quiet, 1},
780 {"q", no_argument, &quiet, 1},
781 {"silent", no_argument, &quiet, 1},
782 {"nh", no_argument, &inhibit_home_gdbinit, 1},
783 {"nx", no_argument, &inhibit_gdbinit, 1},
784 {"n", no_argument, &inhibit_gdbinit, 1},
785 {"batch-silent", no_argument, 0, 'B'},
786 {"batch", no_argument, &batch_flag, 1},
788 /* This is a synonym for "--annotate=1". --annotate is now
789 preferred, but keep this here for a long time because people
790 will be running emacses which use --fullname. */
791 {"fullname", no_argument, 0, 'f'},
792 {"f", no_argument, 0, 'f'},
794 {"annotate", required_argument, 0, OPT_ANNOTATE},
795 {"help", no_argument, &print_help, 1},
796 {"se", required_argument, 0, OPT_SE},
797 {"symbols", required_argument, 0, 's'},
798 {"s", required_argument, 0, 's'},
799 {"exec", required_argument, 0, 'e'},
800 {"e", required_argument, 0, 'e'},
801 {"core", required_argument, 0, 'c'},
802 {"c", required_argument, 0, 'c'},
803 {"pid", required_argument, 0, 'p'},
804 {"p", required_argument, 0, 'p'},
805 {"command", required_argument, 0, 'x'},
806 {"eval-command", required_argument, 0, 'X'},
807 {"version", no_argument, &print_version, 1},
808 {"configuration", no_argument, &print_configuration, 1},
809 {"x", required_argument, 0, 'x'},
810 {"ex", required_argument, 0, 'X'},
811 {"init-command", required_argument, 0, OPT_IX},
812 {"init-eval-command", required_argument, 0, OPT_IEX},
813 {"ix", required_argument, 0, OPT_IX},
814 {"iex", required_argument, 0, OPT_IEX},
815 {"early-init-command", required_argument, 0, OPT_EIX},
816 {"early-init-eval-command", required_argument, 0, OPT_EIEX},
817 {"eix", required_argument, 0, OPT_EIX},
818 {"eiex", required_argument, 0, OPT_EIEX},
819 #ifdef GDBTK
820 {"tclcommand", required_argument, 0, 'z'},
821 {"enable-external-editor", no_argument, 0, 'y'},
822 {"editor-command", required_argument, 0, 'w'},
823 #endif
824 {"ui", required_argument, 0, 'i'},
825 {"interpreter", required_argument, 0, 'i'},
826 {"i", required_argument, 0, 'i'},
827 {"directory", required_argument, 0, 'd'},
828 {"d", required_argument, 0, 'd'},
829 {"data-directory", required_argument, 0, 'D'},
830 {"D", required_argument, 0, 'D'},
831 {"cd", required_argument, 0, OPT_CD},
832 {"tty", required_argument, 0, 't'},
833 {"baud", required_argument, 0, 'b'},
834 {"b", required_argument, 0, 'b'},
835 {"nw", no_argument, NULL, OPT_NOWINDOWS},
836 {"nowindows", no_argument, NULL, OPT_NOWINDOWS},
837 {"w", no_argument, NULL, OPT_WINDOWS},
838 {"windows", no_argument, NULL, OPT_WINDOWS},
839 {"statistics", no_argument, 0, OPT_STATISTICS},
840 {"write", no_argument, &write_files_1, 1},
841 {"args", no_argument, &set_args, 1},
842 {"l", required_argument, 0, 'l'},
843 {"return-child-result", no_argument, &return_child_result, 1},
844 {0, no_argument, 0, 0}
847 while (1)
849 int option_index;
851 c = getopt_long_only (argc, argv, "",
852 long_options, &option_index);
853 if (c == EOF || set_args)
854 break;
856 /* Long option that takes an argument. */
857 if (c == 0 && long_options[option_index].flag == 0)
858 c = long_options[option_index].val;
860 switch (c)
862 case 0:
863 /* Long option that just sets a flag. */
864 break;
865 case OPT_SE:
866 symarg = optarg;
867 execarg = optarg;
868 break;
869 case OPT_CD:
870 cdarg = optarg;
871 break;
872 case OPT_ANNOTATE:
873 /* FIXME: what if the syntax is wrong (e.g. not digits)? */
874 annotation_level = atoi (optarg);
875 break;
876 case OPT_STATISTICS:
877 /* Enable the display of both time and space usage. */
878 set_per_command_time (1);
879 set_per_command_space (1);
880 break;
881 case OPT_TUI:
882 /* --tui is equivalent to -i=tui. */
883 #ifdef TUI
884 interpreter_p = INTERP_TUI;
885 #else
886 error (_("%s: TUI mode is not supported"), gdb_program_name);
887 #endif
888 break;
889 case OPT_WINDOWS:
890 /* FIXME: cagney/2003-03-01: Not sure if this option is
891 actually useful, and if it is, what it should do. */
892 #ifdef GDBTK
893 /* --windows is equivalent to -i=insight. */
894 interpreter_p = INTERP_INSIGHT;
895 #endif
896 break;
897 case OPT_NOWINDOWS:
898 /* -nw is equivalent to -i=console. */
899 interpreter_p = INTERP_CONSOLE;
900 break;
901 case 'f':
902 annotation_level = 1;
903 break;
904 case 's':
905 symarg = optarg;
906 break;
907 case 'e':
908 execarg = optarg;
909 break;
910 case 'c':
911 corearg = optarg;
912 break;
913 case 'p':
914 pidarg = optarg;
915 break;
916 case 'x':
917 cmdarg_vec.emplace_back (CMDARG_FILE, optarg);
918 break;
919 case 'X':
920 cmdarg_vec.emplace_back (CMDARG_COMMAND, optarg);
921 break;
922 case OPT_IX:
923 cmdarg_vec.emplace_back (CMDARG_INIT_FILE, optarg);
924 break;
925 case OPT_IEX:
926 cmdarg_vec.emplace_back (CMDARG_INIT_COMMAND, optarg);
927 break;
928 case OPT_EIX:
929 cmdarg_vec.emplace_back (CMDARG_EARLYINIT_FILE, optarg);
930 break;
931 case OPT_EIEX:
932 cmdarg_vec.emplace_back (CMDARG_EARLYINIT_COMMAND, optarg);
933 break;
934 case 'B':
935 batch_flag = batch_silent = 1;
936 gdb_stdout = new null_file ();
937 break;
938 case 'D':
939 if (optarg[0] == '\0')
940 error (_("%s: empty path for `--data-directory'"),
941 gdb_program_name);
942 set_gdb_data_directory (optarg);
943 gdb_datadir_provided = 1;
944 break;
945 #ifdef GDBTK
946 case 'z':
948 if (!gdbtk_test (optarg))
949 error (_("%s: unable to load tclcommand file \"%s\""),
950 gdb_program_name, optarg);
951 break;
953 case 'y':
954 /* Backwards compatibility only. */
955 break;
956 case 'w':
958 /* Set the external editor commands when gdb is farming out files
959 to be edited by another program. */
960 external_editor_command = xstrdup (optarg);
961 break;
963 #endif /* GDBTK */
964 case 'i':
965 interpreter_p = optarg;
966 break;
967 case 'd':
968 dirarg.push_back (optarg);
969 break;
970 case 't':
971 ttyarg = optarg;
972 break;
973 case 'q':
974 quiet = 1;
975 break;
976 case 'b':
978 int rate;
979 char *p;
981 rate = strtol (optarg, &p, 0);
982 if (rate == 0 && p == optarg)
983 warning (_("could not set baud rate to `%s'."),
984 optarg);
985 else
986 baud_rate = rate;
988 break;
989 case 'l':
991 int timeout;
992 char *p;
994 timeout = strtol (optarg, &p, 0);
995 if (timeout == 0 && p == optarg)
996 warning (_("could not set timeout limit to `%s'."),
997 optarg);
998 else
999 remote_timeout = timeout;
1001 break;
1003 case OPT_READNOW:
1005 readnow_symbol_files = 1;
1006 validate_readnow_readnever ();
1008 break;
1010 case OPT_READNEVER:
1012 readnever_symbol_files = 1;
1013 validate_readnow_readnever ();
1015 break;
1017 case '?':
1018 error (_("Use `%s --help' for a complete list of options."),
1019 gdb_program_name);
1022 write_files = (write_files_1 != 0);
1024 if (batch_flag)
1026 quiet = 1;
1028 /* Disable all output styling when running in batch mode. */
1029 cli_styling = 0;
1033 save_original_signals_state (quiet);
1035 /* Try to set up an alternate signal stack for SIGSEGV handlers. */
1036 gdb::alternate_signal_stack signal_stack;
1038 /* Initialize all files. */
1039 gdb_init ();
1041 /* Process early init files and early init options from the command line. */
1042 if (!inhibit_gdbinit)
1044 std::string home_gdbearlyinit;
1045 get_earlyinit_files (&home_gdbearlyinit);
1046 if (!home_gdbearlyinit.empty () && !inhibit_home_gdbinit)
1047 ret = catch_command_errors (source_script,
1048 home_gdbearlyinit.c_str (), 0);
1050 execute_cmdargs (&cmdarg_vec, CMDARG_EARLYINIT_FILE,
1051 CMDARG_EARLYINIT_COMMAND, &ret);
1053 /* Set the thread pool size here, so the size can be influenced by the
1054 early initialization commands. */
1055 update_thread_pool_size ();
1057 /* Initialize the extension languages. */
1058 ext_lang_initialization ();
1060 /* Recheck if we're starting up quietly after processing the startup
1061 scripts and commands. */
1062 if (!quiet)
1063 quiet = check_quiet_mode ();
1065 /* Now that gdb_init has created the initial inferior, we're in
1066 position to set args for that inferior. */
1067 if (set_args)
1069 /* The remaining options are the command-line options for the
1070 inferior. The first one is the sym/exec file, and the rest
1071 are arguments. */
1072 if (optind >= argc)
1073 error (_("%s: `--args' specified but no program specified"),
1074 gdb_program_name);
1076 symarg = argv[optind];
1077 execarg = argv[optind];
1078 ++optind;
1079 current_inferior ()->set_args
1080 (gdb::array_view<char * const> (&argv[optind], argc - optind));
1082 else
1084 /* OK, that's all the options. */
1086 /* The first argument, if specified, is the name of the
1087 executable. */
1088 if (optind < argc)
1090 symarg = argv[optind];
1091 execarg = argv[optind];
1092 optind++;
1095 /* If the user hasn't already specified a PID or the name of a
1096 core file, then a second optional argument is allowed. If
1097 present, this argument should be interpreted as either a
1098 PID or a core file, whichever works. */
1099 if (pidarg == NULL && corearg == NULL && optind < argc)
1101 pid_or_core_arg = argv[optind];
1102 optind++;
1105 /* Any argument left on the command line is unexpected and
1106 will be ignored. Inform the user. */
1107 if (optind < argc)
1108 gdb_printf (gdb_stderr,
1109 _("Excess command line "
1110 "arguments ignored. (%s%s)\n"),
1111 argv[optind],
1112 (optind == argc - 1) ? "" : " ...");
1115 /* Lookup gdbinit files. Note that the gdbinit file name may be
1116 overridden during file initialization, so get_init_files should be
1117 called after gdb_init. */
1118 std::vector<std::string> system_gdbinit;
1119 std::string home_gdbinit;
1120 std::string local_gdbinit;
1121 get_init_files (&system_gdbinit, &home_gdbinit, &local_gdbinit);
1123 /* Do these (and anything which might call wrap_here or *_filtered)
1124 after initialize_all_files() but before the interpreter has been
1125 installed. Otherwize the help/version messages will be eaten by
1126 the interpreter's output handler. */
1128 if (print_version)
1130 print_gdb_version (gdb_stdout, false);
1131 gdb_printf ("\n");
1132 exit (0);
1135 if (print_help)
1137 print_gdb_help (gdb_stdout);
1138 exit (0);
1141 if (print_configuration)
1143 print_gdb_configuration (gdb_stdout);
1144 gdb_printf ("\n");
1145 exit (0);
1148 /* Install the default UI. All the interpreters should have had a
1149 look at things by now. Initialize the default interpreter. */
1150 set_top_level_interpreter (interpreter_p.c_str ());
1152 /* The interpreter should have installed the real uiout by now. */
1153 gdb_assert (current_uiout != temp_uiout.get ());
1154 temp_uiout = nullptr;
1156 if (!quiet)
1158 /* Print all the junk at the top, with trailing "..." if we are
1159 about to read a symbol file (possibly slowly). */
1160 print_gdb_version (gdb_stdout, true);
1161 if (symarg)
1162 gdb_printf ("..");
1163 gdb_printf ("\n");
1164 gdb_flush (gdb_stdout); /* Force to screen during slow
1165 operations. */
1168 /* Set off error and warning messages with a blank line. */
1169 tmp_warn_preprint.reset ();
1170 warning_pre_print = _("\nwarning: ");
1172 /* Read and execute the system-wide gdbinit file, if it exists.
1173 This is done *before* all the command line arguments are
1174 processed; it sets global parameters, which are independent of
1175 what file you are debugging or what directory you are in. */
1176 if (!system_gdbinit.empty () && !inhibit_gdbinit)
1178 for (const std::string &file : system_gdbinit)
1179 ret = catch_command_errors (source_script, file.c_str (), 0);
1182 /* Read and execute $HOME/.gdbinit file, if it exists. This is done
1183 *before* all the command line arguments are processed; it sets
1184 global parameters, which are independent of what file you are
1185 debugging or what directory you are in. */
1187 if (!home_gdbinit.empty () && !inhibit_gdbinit && !inhibit_home_gdbinit)
1188 ret = catch_command_errors (source_script, home_gdbinit.c_str (), 0);
1190 /* Process '-ix' and '-iex' options early. */
1191 execute_cmdargs (&cmdarg_vec, CMDARG_INIT_FILE, CMDARG_INIT_COMMAND, &ret);
1193 /* Now perform all the actions indicated by the arguments. */
1194 if (cdarg != NULL)
1196 ret = catch_command_errors (cd_command, cdarg, 0);
1199 for (i = 0; i < dirarg.size (); i++)
1200 ret = catch_command_errors (directory_switch, dirarg[i], 0);
1202 /* Skip auto-loading section-specified scripts until we've sourced
1203 local_gdbinit (which is often used to augment the source search
1204 path). */
1205 save_auto_load = global_auto_load;
1206 global_auto_load = 0;
1208 if (execarg != NULL
1209 && symarg != NULL
1210 && strcmp (execarg, symarg) == 0)
1212 /* The exec file and the symbol-file are the same. If we can't
1213 open it, better only print one error message.
1214 catch_command_errors returns non-zero on success! */
1215 ret = catch_command_errors (exec_file_attach, execarg,
1216 !batch_flag);
1217 if (ret != 0)
1218 ret = catch_command_errors (symbol_file_add_main_adapter,
1219 symarg, !batch_flag);
1221 else
1223 if (execarg != NULL)
1224 ret = catch_command_errors (exec_file_attach, execarg,
1225 !batch_flag);
1226 if (symarg != NULL)
1227 ret = catch_command_errors (symbol_file_add_main_adapter,
1228 symarg, !batch_flag);
1231 if (corearg && pidarg)
1232 error (_("Can't attach to process and specify "
1233 "a core file at the same time."));
1235 if (corearg != NULL)
1237 ret = catch_command_errors (core_file_command, corearg,
1238 !batch_flag);
1240 else if (pidarg != NULL)
1242 ret = catch_command_errors (attach_command, pidarg, !batch_flag);
1244 else if (pid_or_core_arg)
1246 /* The user specified 'gdb program pid' or gdb program core'.
1247 If pid_or_core_arg's first character is a digit, try attach
1248 first and then corefile. Otherwise try just corefile. */
1250 if (isdigit (pid_or_core_arg[0]))
1252 ret = catch_command_errors (attach_command, pid_or_core_arg,
1253 !batch_flag);
1254 if (ret == 0)
1255 ret = catch_command_errors (core_file_command,
1256 pid_or_core_arg,
1257 !batch_flag);
1259 else
1261 /* Can't be a pid, better be a corefile. */
1262 ret = catch_command_errors (core_file_command,
1263 pid_or_core_arg,
1264 !batch_flag);
1268 if (ttyarg != NULL)
1269 current_inferior ()->set_tty (ttyarg);
1271 /* Error messages should no longer be distinguished with extra output. */
1272 warning_pre_print = _("warning: ");
1274 /* Read the .gdbinit file in the current directory, *if* it isn't
1275 the same as the $HOME/.gdbinit file (it should exist, also). */
1276 if (!local_gdbinit.empty ())
1278 auto_load_local_gdbinit_pathname
1279 = gdb_realpath (local_gdbinit.c_str ()).release ();
1281 if (!inhibit_gdbinit && auto_load_local_gdbinit)
1283 auto_load_debug_printf ("Loading .gdbinit file \"%s\".",
1284 local_gdbinit.c_str ());
1286 if (file_is_auto_load_safe (local_gdbinit.c_str ()))
1288 auto_load_local_gdbinit_loaded = 1;
1290 ret = catch_command_errors (source_script, local_gdbinit.c_str (), 0);
1295 /* Now that all .gdbinit's have been read and all -d options have been
1296 processed, we can read any scripts mentioned in SYMARG.
1297 We wait until now because it is common to add to the source search
1298 path in local_gdbinit. */
1299 global_auto_load = save_auto_load;
1300 for (objfile *objfile : current_program_space->objfiles ())
1301 load_auto_scripts_for_objfile (objfile);
1303 /* Process '-x' and '-ex' options. */
1304 execute_cmdargs (&cmdarg_vec, CMDARG_FILE, CMDARG_COMMAND, &ret);
1306 if (batch_flag)
1308 int error_status = EXIT_FAILURE;
1309 int *exit_arg = ret == 0 ? &error_status : NULL;
1311 /* We have hit the end of the batch file. */
1312 quit_force (exit_arg, 0);
1315 /* We are starting an interactive session. */
1317 /* Read in the history. This is after all the command files have been read,
1318 so that the user can change the history file via a .gdbinit file. This
1319 is also after the batch_flag check, because we don't need the history in
1320 batch mode. */
1321 init_history ();
1324 static void
1325 captured_main (void *data)
1327 struct captured_main_args *context = (struct captured_main_args *) data;
1329 captured_main_1 (context);
1331 /* NOTE: cagney/1999-11-07: There is probably no reason for not
1332 moving this loop and the code found in captured_command_loop()
1333 into the command_loop() proper. The main thing holding back that
1334 change - SET_TOP_LEVEL() - has been eliminated. */
1335 while (1)
1339 captured_command_loop ();
1341 catch (const gdb_exception_forced_quit &ex)
1343 quit_force (NULL, 0);
1345 catch (const gdb_exception &ex)
1347 exception_print (gdb_stderr, ex);
1350 /* No exit -- exit is through quit_command. */
1354 gdb_main (struct captured_main_args *args)
1358 captured_main (args);
1360 catch (const gdb_exception &ex)
1362 exception_print (gdb_stderr, ex);
1365 /* The only way to end up here is by an error (normal exit is
1366 handled by quit_force()), hence always return an error status. */
1367 return 1;
1371 /* Don't use *_filtered for printing help. We don't want to prompt
1372 for continue no matter how small the screen or how much we're going
1373 to print. */
1375 static void
1376 print_gdb_help (struct ui_file *stream)
1378 std::vector<std::string> system_gdbinit;
1379 std::string home_gdbinit;
1380 std::string local_gdbinit;
1381 std::string home_gdbearlyinit;
1383 get_init_files (&system_gdbinit, &home_gdbinit, &local_gdbinit);
1384 get_earlyinit_files (&home_gdbearlyinit);
1386 /* Note: The options in the list below are only approximately sorted
1387 in the alphabetical order, so as to group closely related options
1388 together. */
1389 gdb_puts (_("\
1390 This is the GNU debugger. Usage:\n\n\
1391 gdb [options] [executable-file [core-file or process-id]]\n\
1392 gdb [options] --args executable-file [inferior-arguments ...]\n\n\
1393 "), stream);
1394 gdb_puts (_("\
1395 Selection of debuggee and its files:\n\n\
1396 --args Arguments after executable-file are passed to inferior.\n\
1397 --core=COREFILE Analyze the core dump COREFILE.\n\
1398 --exec=EXECFILE Use EXECFILE as the executable.\n\
1399 --pid=PID Attach to running process PID.\n\
1400 --directory=DIR Search for source files in DIR.\n\
1401 --se=FILE Use FILE as symbol file and executable file.\n\
1402 --symbols=SYMFILE Read symbols from SYMFILE.\n\
1403 --readnow Fully read symbol files on first access.\n\
1404 --readnever Do not read symbol files.\n\
1405 --write Set writing into executable and core files.\n\n\
1406 "), stream);
1407 gdb_puts (_("\
1408 Initial commands and command files:\n\n\
1409 --command=FILE, -x Execute GDB commands from FILE.\n\
1410 --init-command=FILE, -ix\n\
1411 Like -x but execute commands before loading inferior.\n\
1412 --eval-command=COMMAND, -ex\n\
1413 Execute a single GDB command.\n\
1414 May be used multiple times and in conjunction\n\
1415 with --command.\n\
1416 --init-eval-command=COMMAND, -iex\n\
1417 Like -ex but before loading inferior.\n\
1418 --nh Do not read ~/.gdbinit.\n\
1419 --nx Do not read any .gdbinit files in any directory.\n\n\
1420 "), stream);
1421 gdb_puts (_("\
1422 Output and user interface control:\n\n\
1423 --fullname Output information used by emacs-GDB interface.\n\
1424 --interpreter=INTERP\n\
1425 Select a specific interpreter / user interface.\n\
1426 --tty=TTY Use TTY for input/output by the program being debugged.\n\
1427 -w Use the GUI interface.\n\
1428 --nw Do not use the GUI interface.\n\
1429 "), stream);
1430 #if defined(TUI)
1431 gdb_puts (_("\
1432 --tui Use a terminal user interface.\n\
1433 "), stream);
1434 #endif
1435 gdb_puts (_("\
1436 -q, --quiet, --silent\n\
1437 Do not print version number on startup.\n\n\
1438 "), stream);
1439 gdb_puts (_("\
1440 Operating modes:\n\n\
1441 --batch Exit after processing options.\n\
1442 --batch-silent Like --batch, but suppress all gdb stdout output.\n\
1443 --return-child-result\n\
1444 GDB exit code will be the child's exit code.\n\
1445 --configuration Print details about GDB configuration and then exit.\n\
1446 --help Print this message and then exit.\n\
1447 --version Print version information and then exit.\n\n\
1448 Remote debugging options:\n\n\
1449 -b BAUDRATE Set serial port baud rate used for remote debugging.\n\
1450 -l TIMEOUT Set timeout in seconds for remote debugging.\n\n\
1451 Other options:\n\n\
1452 --cd=DIR Change current directory to DIR.\n\
1453 --data-directory=DIR, -D\n\
1454 Set GDB's data-directory to DIR.\n\
1455 "), stream);
1456 gdb_puts (_("\n\
1457 At startup, GDB reads the following early init files and executes their\n\
1458 commands:\n\
1459 "), stream);
1460 if (!home_gdbearlyinit.empty ())
1461 gdb_printf (stream, _("\
1462 * user-specific early init file: %s\n\
1463 "), home_gdbearlyinit.c_str ());
1464 if (home_gdbearlyinit.empty ())
1465 gdb_printf (stream, _("\
1466 None found.\n"));
1467 gdb_puts (_("\n\
1468 At startup, GDB reads the following init files and executes their commands:\n\
1469 "), stream);
1470 if (!system_gdbinit.empty ())
1472 std::string output;
1473 for (size_t idx = 0; idx < system_gdbinit.size (); ++idx)
1475 output += system_gdbinit[idx];
1476 if (idx < system_gdbinit.size () - 1)
1477 output += ", ";
1479 gdb_printf (stream, _("\
1480 * system-wide init files: %s\n\
1481 "), output.c_str ());
1483 if (!home_gdbinit.empty ())
1484 gdb_printf (stream, _("\
1485 * user-specific init file: %s\n\
1486 "), home_gdbinit.c_str ());
1487 if (!local_gdbinit.empty ())
1488 gdb_printf (stream, _("\
1489 * local init file (see also 'set auto-load local-gdbinit'): ./%s\n\
1490 "), local_gdbinit.c_str ());
1491 if (system_gdbinit.empty () && home_gdbinit.empty ()
1492 && local_gdbinit.empty ())
1493 gdb_printf (stream, _("\
1494 None found.\n"));
1495 gdb_puts (_("\n\
1496 For more information, type \"help\" from within GDB, or consult the\n\
1497 GDB manual (available as on-line info or a printed manual).\n\
1498 "), stream);
1499 if (REPORT_BUGS_TO[0] && stream == gdb_stdout)
1500 gdb_printf (stream, _("\n\
1501 Report bugs to %ps.\n\
1502 "), styled_string (file_name_style.style (), REPORT_BUGS_TO));
1503 if (stream == gdb_stdout)
1504 gdb_printf (stream, _("\n\
1505 You can ask GDB-related questions on the GDB users mailing list\n\
1506 (gdb@sourceware.org) or on GDB's IRC channel (#gdb on Libera.Chat).\n"));