Variable: gud-xdb-directories

gud-xdb-directories is a customizable variable defined in gud.el.gz.

Value

nil

Documentation

A list of directories that xdb should search for source code.

If nil, only source files in the program directory will be known to xdb.

The file names should be absolute, or relative to the directory containing the executable being debugged.

View in manual

Probably introduced at or before Emacs version 19.20.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/gud.el.gz
(defcustom gud-xdb-directories nil
  "A list of directories that xdb should search for source code.
If nil, only source files in the program directory
will be known to xdb.

The file names should be absolute, or relative to the directory
containing the executable being debugged."
  :type '(choice (const :tag "Current Directory" nil)
		 (repeat :value ("")
                         directory)))