GDBMI_file_exec_file.st
changeset 12 568a2971c977
child 78 c24e7d8bc881
equal deleted inserted replaced
11:474fbb650afe 12:568a2971c977
       
     1 "{ Package: 'jv:libgdbs' }"
       
     2 
       
     3 GDBMICommand subclass:#GDBMI_file_exec_file
       
     4 	instanceVariableNames:''
       
     5 	classVariableNames:''
       
     6 	poolDictionaries:''
       
     7 	category:'GDB-Core-Commands-MI'
       
     8 !
       
     9 
       
    10 !GDBMI_file_exec_file class methodsFor:'documentation'!
       
    11 
       
    12 documentation
       
    13 "
       
    14 The `-file-exec-file' Command
       
    15 -----------------------------
       
    16 
       
    17 Synopsis
       
    18 ........
       
    19 
       
    20       -file-exec-file FILE
       
    21 
       
    22    Specify the executable file to be debugged.  Unlike
       
    23 `-file-exec-and-symbols', the symbol table is _not_ read from this
       
    24 file.  If used without argument, {No value for `GDBN'} clears the
       
    25 information about the executable file.  No output is produced, except a
       
    26 completion notification.
       
    27 
       
    28 {No value for `GDBN'} Command
       
    29 .............................
       
    30 
       
    31 The corresponding {No value for `GDBN'} command is `exec-file'.
       
    32 
       
    33 Example
       
    34 .......
       
    35 
       
    36      (gdb)
       
    37      -file-exec-file /kwikemart/marge/ezannoni/TRUNK/mbx/hello.mbx
       
    38      ^done
       
    39      (gdb)
       
    40 
       
    41 
       
    42 "
       
    43 ! !
       
    44 
       
    45 !GDBMI_file_exec_file methodsFor:'accessing'!
       
    46 
       
    47 operation
       
    48 	^ 'file-exec-file'
       
    49 ! !
       
    50