manpagez: man pages & more
info gdb
Home | html | info | man
[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

24.16 GDB/MI File Commands

This section describes the GDB/MI commands to specify executable file names and to read in and obtain symbol table information.

The -file-exec-and-symbols Command

Synopsis

 
 -file-exec-and-symbols file

Specify the executable file to be debugged. This file is the one from which the symbol table is also read. If no file is specified, the command clears the executable and symbol information. If breakpoints are set when using this command with no arguments, No value for GDBN will produce error messages. Otherwise, no output is produced, except a completion notification.

No value for GDBN Command

The corresponding No value for GDBN command is ‘file’.

Example

 
(gdb)
-file-exec-and-symbols /kwikemart/marge/ezannoni/TRUNK/mbx/hello.mbx
^done
(gdb)

The -file-exec-file Command

Synopsis

 
 -file-exec-file file

Specify the executable file to be debugged. Unlike ‘-file-exec-and-symbols’, the symbol table is not read from this file. If used without argument, No value for GDBN clears the information about the executable file. No output is produced, except a completion notification.

No value for GDBN Command

The corresponding No value for GDBN command is ‘exec-file’.

Example

 
(gdb)
-file-exec-file /kwikemart/marge/ezannoni/TRUNK/mbx/hello.mbx
^done
(gdb)

The -file-list-exec-sections Command

Synopsis

 
 -file-list-exec-sections

List the sections of the current executable file.

No value for GDBN Command

The No value for GDBN command ‘info file’ shows, among the rest, the same information as this command. gdbtk has a corresponding command ‘gdb_load_info’.

Example

N.A.

The -file-list-exec-source-file Command

Synopsis

 
 -file-list-exec-source-file

List the line number, the current source file, and the absolute path to the current source file for the current executable.

No value for GDBN Command

The No value for GDBN equivalent is ‘info source

Example

 
(gdb)
123-file-list-exec-source-file
123^done,line="1",file="foo.c",fullname="/home/bar/foo.c"
(gdb)

The -file-list-exec-source-files Command

Synopsis

 
 -file-list-exec-source-files

List the source files for the current executable.

It will always output the filename, but only when No value for GDBN can find the absolute file name of a source file, will it output the fullname.

No value for GDBN Command

The No value for GDBN equivalent is ‘info sources’. gdbtk has an analogous command ‘gdb_listfiles’.

Example

 
(gdb)
-file-list-exec-source-files
^done,files=[
{file=foo.c,fullname=/home/foo.c},
{file=/home/bar.c,fullname=/home/bar.c},
{file=gdb_could_not_find_fullpath.c}]
(gdb)

The -file-list-shared-libraries Command

Synopsis

 
 -file-list-shared-libraries

List the shared libraries in the program.

No value for GDBN Command

The corresponding No value for GDBN command is ‘info shared’.

Example

N.A.

The -file-list-symbol-files Command

Synopsis

 
 -file-list-symbol-files

List symbol files.

No value for GDBN Command

The corresponding No value for GDBN command is ‘info file’ (part of it).

Example

N.A.

The -file-symbol-file Command

Synopsis

 
 -file-symbol-file file

Read symbol table info from the specified file argument. When used without arguments, clears No value for GDBN's symbol table info. No output is produced, except for a completion notification.

No value for GDBN Command

The corresponding No value for GDBN command is ‘symbol-file’.

Example

 
(gdb)
-file-symbol-file /kwikemart/marge/ezannoni/TRUNK/mbx/hello.mbx
^done
(gdb)

[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]
© manpagez.com 2000-2024
Individual documents may contain additional copyright information.