From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 107240 invoked by alias); 8 Jun 2018 12:59:08 -0000 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 Received: (qmail 107218 invoked by uid 89); 8 Jun 2018 12:59:08 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-3.9 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_NONE,SPF_HELO_PASS autolearn=ham version=3.3.2 spammy=Hx-languages-length:435 X-HELO: gateway36.websitewelcome.com Received: from gateway36.websitewelcome.com (HELO gateway36.websitewelcome.com) (192.185.188.18) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 08 Jun 2018 12:59:07 +0000 Received: from cm14.websitewelcome.com (cm14.websitewelcome.com [100.42.49.7]) by gateway36.websitewelcome.com (Postfix) with ESMTP id B145040108777 for ; Fri, 8 Jun 2018 07:59:05 -0500 (CDT) Received: from box5379.bluehost.com ([162.241.216.53]) by cmsmtp with SMTP id RGyvfqK5dkBj6RGyvfJYv0; Fri, 08 Jun 2018 07:59:05 -0500 X-Authority-Reason: nr=8 Received: from 75-166-19-45.hlrn.qwest.net ([75.166.19.45]:59270 helo=bapiya) by box5379.bluehost.com with esmtpsa (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256) (Exim 4.91) (envelope-from ) id 1fRGyv-004KV1-Db; Fri, 08 Jun 2018 07:59:05 -0500 From: Tom Tromey To: Petr Tesarik Cc: gdb-patches@sourceware.org, Simon Marchi , John Baldwin , Petr Tesarik , Jeff Mahoney Subject: Re: [PATCH 1/4] Add an optional offset option to the "symbol-file" command References: <20180608124000.10668-1-ptesarik@suse.cz> <20180608124000.10668-2-ptesarik@suse.cz> Date: Fri, 08 Jun 2018 12:59:00 -0000 In-Reply-To: <20180608124000.10668-2-ptesarik@suse.cz> (Petr Tesarik's message of "Fri, 8 Jun 2018 14:39:57 +0200") Message-ID: <87muw5ph7w.fsf@tromey.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.1.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-BWhitelist: no X-Source-L: No X-Exim-ID: 1fRGyv-004KV1-Db X-Source-Sender: 75-166-19-45.hlrn.qwest.net (bapiya) [75.166.19.45]:59270 X-Source-Auth: tom+tromey.com X-Email-Count: 2 X-Source-Cap: ZWx5bnJvYmk7ZWx5bnJvYmk7Ym94NTM3OS5ibHVlaG9zdC5jb20= X-Local-Domain: yes X-SW-Source: 2018-06/txt/msg00204.txt.bz2 >>>>> "Petr" == Petr Tesarik writes: Petr> * symfile.c (symbol_file_command, symbol_file_add_main_1) Petr> (_initialize_symfile): Add option "-o" to symbol-file to add an Petr> offset to each section of the symbol file. I think this should also update the help text of the command to mention the new option. Patch #4 needs this too. Tom