From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 15841 invoked by alias); 14 Apr 2013 14:15: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 15828 invoked by uid 89); 14 Apr 2013 14:15:07 -0000 X-Spam-SWARE-Status: No, score=-6.7 required=5.0 tests=AWL,BAYES_00,KHOP_RCVD_UNTRUST,RCVD_IN_DNSWL_HI,RCVD_IN_HOSTKARMA_W,RP_MATCHES_RCVD,SPF_HELO_PASS autolearn=ham version=3.3.1 Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.84/v0.84-167-ge50287c) with ESMTP; Sun, 14 Apr 2013 14:15:07 +0000 Received: from int-mx01.intmail.prod.int.phx2.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r3EEF2Qt030772 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Sun, 14 Apr 2013 10:15:03 -0400 Received: from host2.jankratochvil.net (ovpn-116-44.ams2.redhat.com [10.36.116.44]) by int-mx01.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id r3EEEwKI026649 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO); Sun, 14 Apr 2013 10:15:01 -0400 Date: Mon, 15 Apr 2013 13:34:00 -0000 From: Jan Kratochvil To: Aleksandar Ristovski Cc: gdb-patches@sourceware.org Subject: Re: [PATCH 3/8] Create empty common/linux-maps.[ch] and common/common-target.[ch] Message-ID: <20130414141457.GA23227@host2.jankratochvil.net> References: <1365521265-28870-1-git-send-email-ARistovski@qnx.com> <1365521265-28870-4-git-send-email-ARistovski@qnx.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1365521265-28870-4-git-send-email-ARistovski@qnx.com> User-Agent: Mutt/1.5.21 (2010-09-15) X-IsSubscribed: yes X-SW-Source: 2013-04/txt/msg00412.txt.bz2 On Tue, 09 Apr 2013 17:27:40 +0200, Aleksandar Ristovski wrote: > Most notable changes: addition of common-target.[ch] files, to > receive read_alloc and read_stralloc in patch #5. > > * Makefile.in (HFILES_NO_SRCDIR); Add common/linux-maps.h, > common/common-target.h. > (COMMON_OBS): Add common-target.o. > (linux-maps.o, common-target.o): New. > * common/common-target.c: New file. > * common/common-target.h: New file. > * common/linux-maps.c: New file. > * common/linux-maps.h: New file. > * config/i386/linux.mh (NATDEPFILES): Add linux-maps.o. > * config/i386/linux64.mh (NATDEPFILES): Ditto. > * gdbserver/Makefile.in (OBS): Add common-taret.o. > (linux-maps.o, common-target.o): New. > * gdbserver/configure.srv (srv_tgtobj): Add linux-maps.o. Just be sure to put then these lines into gdb/gdbserver/ChangeLog (and not gdb/ChangeLog) and without the "gdbserver/" prefix. Thanks, Jan