From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 4392 invoked by alias); 5 Jun 2006 19:56:38 -0000 Received: (qmail 4384 invoked by uid 22791); 5 Jun 2006 19:56:38 -0000 X-Spam-Check-By: sourceware.org Received: from romy.inter.net.il (HELO romy.inter.net.il) (192.114.186.66) by sourceware.org (qpsmtpd/0.31) with ESMTP; Mon, 05 Jun 2006 19:56:36 +0000 Received: from HOME-C4E4A596F7 (IGLD-80-230-32-52.inter.net.il [80.230.32.52]) by romy.inter.net.il (MOS 3.7.3-GA) with ESMTP id EUM10497 (AUTH halo1); Mon, 5 Jun 2006 22:56:31 +0300 (IDT) Date: Mon, 05 Jun 2006 19:56:00 -0000 Message-Id: From: Eli Zaretskii To: gdb-patches@sources.redhat.com In-reply-to: <20060605134517.GA25925@brasko.net> (message from Bob Rossi on Mon, 5 Jun 2006 09:45:17 -0400) Subject: Re: starting gdb/mi from FE Reply-to: Eli Zaretskii References: <20060605134517.GA25925@brasko.net> X-IsSubscribed: yes Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2006-06/txt/msg00044.txt.bz2 > Date: Mon, 5 Jun 2006 09:45:17 -0400 > From: Bob Rossi > > $ ./gdb/gdb -q -i=mi4,mi3 ./main Multiple values separated by a comma is not how GNU programs accept multiple values for the same option. -i=mi4 -i=mi3 is more like it. In any case, any change in the command-line options should be accompanied by a suitable change to the user manual. Thanks.