From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 4395 invoked by alias); 9 Jun 2008 16:14:17 -0000 Received: (qmail 4387 invoked by uid 22791); 9 Jun 2008 16:14:17 -0000 X-Spam-Check-By: sourceware.org Received: from mail.codesourcery.com (HELO mail.codesourcery.com) (65.74.133.4) by sourceware.org (qpsmtpd/0.31) with ESMTP; Mon, 09 Jun 2008 16:13:59 +0000 Received: (qmail 9781 invoked from network); 9 Jun 2008 16:13:58 -0000 Received: from unknown (HELO ?192.168.0.222?) (carlos@127.0.0.2) by mail.codesourcery.com with ESMTPA; 9 Jun 2008 16:13:58 -0000 Message-ID: <484D56BF.3060105@codesourcery.com> Date: Mon, 09 Jun 2008 18:34:00 -0000 From: Carlos O'Donell User-Agent: Mozilla-Thunderbird 2.0.0.12 (X11/20080420) MIME-Version: 1.0 To: gdb-patches Subject: [PATCH] Mention --version in gdbserver's --help. Content-Type: multipart/mixed; boundary="------------020707040205060203010400" Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2008-06/txt/msg00166.txt.bz2 This is a multi-part message in MIME format. --------------020707040205060203010400 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-length: 202 The gdbserver's --help should advertise the --version option. Tested on i686-pc-linux-gnu. OK to checkin? Cheers, Carlos. -- Carlos O'Donell CodeSourcery carlos@codesourcery.com (650) 331-3385 x716 --------------020707040205060203010400 Content-Type: text/x-diff; name="2008-06-09-gdbserver.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="2008-06-09-gdbserver.diff" Content-length: 789 2008-06-09 Carlos O'Donell * server.c (gdbserver_usage): Mention --version. Index: gdb/gdbserver/server.c =================================================================== RCS file: /cvs/src/src/gdb/gdbserver/server.c,v retrieving revision 1.73 diff -u -p -r1.73 server.c --- gdb/gdbserver/server.c 5 Jun 2008 22:36:57 -0000 1.73 +++ gdb/gdbserver/server.c 9 Jun 2008 16:11:14 -0000 @@ -1197,6 +1197,7 @@ gdbserver_usage (FILE *stream) "\n" "Options:\n" " --debug\t\tEnable debugging output.\n" + " --version\t\tDisplay version information and exit.\n" " --wrapper WRAPPER --\tRun WRAPPER to start new programs.\n"); if (REPORT_BUGS_TO[0] && stream == stdout) fprintf (stream, "Report bugs to \"%s\".\n", REPORT_BUGS_TO); --------------020707040205060203010400--