From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 4200 invoked by alias); 16 Apr 2005 21:04:44 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 4039 invoked from network); 16 Apr 2005 21:04:35 -0000 Received: from unknown (HELO viper.snap.net.nz) (202.37.101.8) by sourceware.org with SMTP; 16 Apr 2005 21:04:35 -0000 Received: from farnswood.snap.net.nz (p46-tnt1.snap.net.nz [202.124.110.46]) by viper.snap.net.nz (Postfix) with ESMTP id 842AC4ADBF9; Sun, 17 Apr 2005 09:04:32 +1200 (NZST) Received: by farnswood.snap.net.nz (Postfix, from userid 501) id C873462A99; Sat, 16 Apr 2005 22:05:03 +0100 (BST) From: Nick Roberts MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <16993.32254.860849.507961@farnswood.snap.net.nz> Date: Sat, 16 Apr 2005 21:04:00 -0000 To: Eli Zaretskii Cc: drow@false.org, glaw@level5networks.com, gdb-patches@sources.redhat.com Subject: Re: Machine interface In-Reply-To: <01c52c6e$Blat.v2.4$e5ef0a00@zahav.net.il> References: <423AFB39.6050705@level5networks.com> <20050318160536.GA31080@white> <20050318161126.GA27141@nevyn.them.org> <16955.40459.99287.889091@farnswood.snap.net.nz> <01c52c6e$Blat.v2.4$e5ef0a00@zahav.net.il> X-SW-Source: 2005-04/txt/msg00182.txt.bz2 > > From: Nick Roberts > > Date: Sat, 19 Mar 2005 16:35:39 +1300 > > Cc: Greg Law , > > gdb-patches@sources.redhat.com > > > > > More specifically, Greg, I think you're missing the "-i=mi" option. > > > > Thats because its not mentioned in the GDB/MI section. How about the patch > > below (includes typo correction)? > > Approved, with one correction: > > > ! @sc{gdb/mi} is a line based machine oriented text interface to > > ! @value{GDBN} and is specified using the @option{--interpreter} command > ^^^^^^^^^^^^^^^^^^ > Please say "is activated by specifying the @option{--interpreter} command" > instead. > > Thanks. Comitted. 2005-04-17 Nick Roberts * gdb.texinfo (Mode Options): Fix typo. (GDB/MI): Describe how to invoke GDB/MI. diff -c /home/nick/src/gdb/doc/gdb.texinfo.\~1.244.\~ /home/nick/src/gdb/doc/gdb.texinfo *** /home/nick/src/gdb/doc/gdb.texinfo.~1.244.~ 2005-04-17 09:01:31.000000000 +1200 --- /home/nick/src/gdb/doc/gdb.texinfo 2005-04-17 08:46:47.000000000 +1200 *************** *** 1119,1125 **** @samp{--interpreter=mi} (or @samp{--interpreter=mi2}) causes @value{GDBN} to use the @dfn{@sc{gdb/mi} interface} (@pxref{GDB/MI, , ! The @sc{gdb/mi} Interface}) included since @var{GDBN} version 6.0. The previous @sc{gdb/mi} interface, included in @value{GDBN} version 5.3 and selected with @samp{--interpreter=mi1}, is deprecated. Earlier @sc{gdb/mi} interfaces are no longer supported. --- 1119,1125 ---- @samp{--interpreter=mi} (or @samp{--interpreter=mi2}) causes @value{GDBN} to use the @dfn{@sc{gdb/mi} interface} (@pxref{GDB/MI, , ! The @sc{gdb/mi} Interface}) included since @value{GDBN} version 6.0. The previous @sc{gdb/mi} interface, included in @value{GDBN} version 5.3 and selected with @samp{--interpreter=mi1}, is deprecated. Earlier @sc{gdb/mi} interfaces are no longer supported. *************** *** 16457,16465 **** @unnumberedsec Function and Purpose @cindex @sc{gdb/mi}, its purpose ! @sc{gdb/mi} is a line based machine oriented text interface to @value{GDBN}. It is ! specifically intended to support the development of systems which use ! the debugger as just one small component of a larger system. This chapter is a specification of the @sc{gdb/mi} interface. It is written in the form of a reference manual. --- 16457,16467 ---- @unnumberedsec Function and Purpose @cindex @sc{gdb/mi}, its purpose ! @sc{gdb/mi} is a line based machine oriented text interface to ! @value{GDBN} and is activated by specifying using the ! @option{--interpreter} command line option (@pxref{Mode Options}). It ! is specifically intended to support the development of systems which ! use the debugger as just one small component of a larger system. This chapter is a specification of the @sc{gdb/mi} interface. It is written in the form of a reference manual. Diff finished. Sun Apr 17 09:04:25 2005