Previous: Mode Options, Up: Invoking GDB


2.1.3 What gdb Does During Startup

Here's the description of what gdb does during session startup:

  1. Sets up the command interpreter as specified by the command line (see interpreter).
  2. Executes commands and command files specified by the `-iex' and `-ix' options in their specified order. Usually you should use the `-ex' and `-x' options instead, but this way you can apply settings before gdb init files get executed and before inferior gets loaded.
  3. Reads the system-wide init file (if --with-system-gdbinit was used when building gdb; see System-wide configuration and settings) and executes all the commands in that file.
  4. Reads the init file (if any) in your home directory1 and executes all the commands in that file.
  5. Processes command line options and operands.
  6. Reads and executes the commands from init file (if any) in the current working directory. This is only done if the current directory is different from your home directory. Thus, you can have more than one init file, one generic in your home directory, and another, specific to the program you are debugging, in the directory where you invoke gdb.
  7. If the command line specified a program to debug, or a process to attach to, or a core file, gdb loads any auto-loaded scripts provided for the program or for its loaded shared libraries. See Auto-loading.

    If you wish to disable the auto-loading during startup, you must do something like the following:

              $ gdb -iex "set auto-load-scripts off" myprogram
         

    Option `-ex' does not work because the auto-loading is then turned off too late.

  8. Executes commands and command files specified by the `-ex' and `-x' options in their specified order. See Command Files, for more details about gdb command files.
  9. Reads the command history recorded in the history file. See Command History, for more details about the command history and the files where gdb records it.

Init files use the same syntax as command files (see Command Files) and are processed by gdb in the same way. The init file in your home directory can set options (such as `set complaints') that affect subsequent processing of command line options and operands. Init files are not executed if you use the `-nx' option (see Choosing Modes).

To display the list of init files loaded by gdb at startup, you can use gdb --help.

The gdb init files are normally called .gdbinit. The DJGPP port of gdb uses the name gdb.ini, due to the limitations of file names imposed by DOS filesystems. The Windows ports of gdb use the standard name, but if they find a gdb.ini file, they warn you about that and suggest to rename the file to the standard name.


Footnotes

[1] On DOS/Windows systems, the home directory is the one pointed to by the HOME environment variable.