GDBMI_gdb_version.st
changeset 12 568a2971c977
child 78 c24e7d8bc881
equal deleted inserted replaced
11:474fbb650afe 12:568a2971c977
       
     1 "{ Package: 'jv:libgdbs' }"
       
     2 
       
     3 GDBMICommand subclass:#GDBMI_gdb_version
       
     4 	instanceVariableNames:''
       
     5 	classVariableNames:''
       
     6 	poolDictionaries:''
       
     7 	category:'GDB-Core-Commands-MI'
       
     8 !
       
     9 
       
    10 !GDBMI_gdb_version class methodsFor:'documentation'!
       
    11 
       
    12 documentation
       
    13 "
       
    14 The `-gdb-version' Command
       
    15 --------------------------
       
    16 
       
    17 Synopsis
       
    18 ........
       
    19 
       
    20       -gdb-version
       
    21 
       
    22    Show version information for {No value for `GDBN'}.  Used mostly in
       
    23 testing.
       
    24 
       
    25 {No value for `GDBN'} Command
       
    26 .............................
       
    27 
       
    28 The {No value for `GDBN'} equivalent is `show version'.  {No value for
       
    29 `GDBN'} by default shows this information when you start an interactive
       
    30 session.
       
    31 
       
    32 Example
       
    33 .......
       
    34 
       
    35      (gdb)
       
    36      -gdb-version
       
    37      ~GNU gdb 5.2.1
       
    38      ~Copyright 2000 Free Software Foundation, Inc.
       
    39      ~GDB is free software, covered by the GNU General Public License, and
       
    40      ~you are welcome to change it and/or distribute copies of it under
       
    41      ~ certain conditions.
       
    42      ~Type 'show copying' to see the conditions.
       
    43      ~There is absolutely no warranty for GDB.  Type 'show warranty' for
       
    44      ~ details.
       
    45      ~This GDB was configured as
       
    46       '--host=sparc-sun-solaris2.5.1 --target=ppc-eabi'.
       
    47      ^done
       
    48      (gdb)
       
    49 
       
    50 
       
    51 "
       
    52 ! !
       
    53 
       
    54 !GDBMI_gdb_version methodsFor:'accessing'!
       
    55 
       
    56 operation
       
    57 	^ 'gdb-version'
       
    58 ! !
       
    59