From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 130695 invoked by alias); 22 Jun 2018 07:52:28 -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 24372 invoked by uid 89); 22 Jun 2018 07:49:44 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-11.9 required=5.0 tests=BAYES_00,GIT_PATCH_2,GIT_PATCH_3,SPF_PASS,TIME_LIMIT_EXCEEDED autolearn=unavailable version=3.3.2 spammy=texts X-HELO: mx2.suse.de Received: from mx2.suse.de (HELO mx2.suse.de) (195.135.220.15) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 22 Jun 2018 07:49:28 +0000 Received: from relay2.suse.de (charybdis-ext-too.suse.de [195.135.220.254]) by mx2.suse.de (Postfix) with ESMTP id CF344AE84 for ; Fri, 22 Jun 2018 07:49:25 +0000 (UTC) Date: Fri, 22 Jun 2018 07:52:00 -0000 From: Petr Tesarik To: gdb-patches@sourceware.org Subject: Re: [PATCH v2 0/4] Allow loading symbol files with an offset Message-ID: <20180622094924.34ac90e4@ezekiel.suse.cz> In-Reply-To: <20180611120835.27343-1-ptesarik@suse.cz> References: <20180611120835.27343-1-ptesarik@suse.cz> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-IsSubscribed: yes X-SW-Source: 2018-06/txt/msg00536.txt.bz2 Hi all, I'm sorry if I'm being impatient, but what should be the next step to get this patch set reviewed and accepted? Anything I can do to help? Also note that I haven't signed the copyright assignment form yet. I have no issues with doing that, but I have no idea how to get things rolling. TIA, Petr T On Mon, 11 Jun 2018 14:08:31 +0200 Petr Tesarik wrote: > Implement an "-o" option for symbol-file and add-symbol-file. > > Changes since v1: > * Adjust help texts > * Update gdb/NEWS > > Petr Tesarik (4): > Add an optional offset option to the "symbol-file" command > Make add-symbol-file's address argument optional > Make sure that sorting does not change section order > Add an optional offset option to the "add-symbol-file" command > > gdb/ChangeLog | 23 ++++++++ > gdb/NEWS | 10 ++++ > gdb/doc/ChangeLog | 13 +++++ > gdb/doc/gdb.texinfo | 24 ++++++-- > gdb/symfile.c | 108 +++++++++++++++++++++++++++++------- > gdb/testsuite/ChangeLog | 13 +++++ > gdb/testsuite/gdb.base/relocate.exp | 95 +++++++++++++++++++++++++++++++ > 7 files changed, 259 insertions(+), 27 deletions(-) >