From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 16773 invoked by alias); 13 Feb 2008 07:16:35 -0000 Received: (qmail 16763 invoked by uid 22791); 13 Feb 2008 07:16:34 -0000 X-Spam-Check-By: sourceware.org Received: from mtagate2.de.ibm.com (HELO mtagate2.de.ibm.com) (195.212.29.151) by sourceware.org (qpsmtpd/0.31) with ESMTP; Wed, 13 Feb 2008 07:16:12 +0000 Received: from d12nrmr1607.megacenter.de.ibm.com (d12nrmr1607.megacenter.de.ibm.com [9.149.167.49]) by mtagate2.de.ibm.com (8.13.8/8.13.8) with ESMTP id m1D7G93e169378 for ; Wed, 13 Feb 2008 07:16:09 GMT Received: from d12av02.megacenter.de.ibm.com (d12av02.megacenter.de.ibm.com [9.149.165.228]) by d12nrmr1607.megacenter.de.ibm.com (8.13.8/8.13.8/NCO v8.7) with ESMTP id m1D7G9QX2236498 for ; Wed, 13 Feb 2008 08:16:09 +0100 Received: from d12av02.megacenter.de.ibm.com (loopback [127.0.0.1]) by d12av02.megacenter.de.ibm.com (8.12.11.20060308/8.13.3) with ESMTP id m1D7G9HD019805 for ; Wed, 13 Feb 2008 08:16:09 +0100 Received: from bbkeks.de.ibm.com (dyn-9-152-248-39.boeblingen.de.ibm.com [9.152.248.39]) by d12av02.megacenter.de.ibm.com (8.12.11.20060308/8.12.11) with ESMTP id m1D7G88e019786 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 13 Feb 2008 08:16:09 +0100 Message-ID: <47B298C5.9030001@de.ibm.com> Date: Wed, 13 Feb 2008 07:16:00 -0000 From: Markus Deuling User-Agent: Thunderbird 2.0.0.9 (X11/20071031) MIME-Version: 1.0 To: Maxim Grigoriev CC: gdb-patches@sources.redhat.com, Marc Gauthier , Chris Zankel , Bob Wilson Subject: Re: [commit] Adding support for Xtensa GNU/Linux References: <47B0C695.7010908@hq.tensilica.com> In-Reply-To: <47B0C695.7010908@hq.tensilica.com> Content-Type: multipart/mixed; boundary="------------020108060306090805080509" 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-02/txt/msg00209.txt.bz2 This is a multi-part message in MIME format. --------------020108060306090805080509 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-length: 908 Hi Maxim, Maxim Grigoriev schrieb: > This patch adds support for Xtensa GNU/Linux. > > We like XML approach to describe register files. It matches > Xtensa, which requires register files to be easily configurable. > > But, we need more time to update Xtensa FSF GDB/GDBSERVER > to start fully using this feature. So this version of Xtensa > FSF GDB/GDBSERVER does not use this new approach. > there is a problem in your patch that breaks GDB's build if you build with enable-targets=all. xtensa-linux-nat.o is part of ALL_TARGET_OBS which are built when using enable-targets=all. If you now build GDB for example on x86 you have two native files (the one from x86 and always xtensa-linux-nat). This patch fixes that. Ok to commit? ChangeLog: * Makefile.in (ALL_TARGET_OBS): Remove dependency to xtensa-linux-nat.o. -- Markus Deuling GNU Toolchain for Linux on Cell BE deuling@de.ibm.com --------------020108060306090805080509 Content-Type: text/plain; name="fix-xtensa" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="fix-xtensa" Content-length: 482 diff -urpN src/gdb/Makefile.in dev/gdb/Makefile.in --- src/gdb/Makefile.in 2008-02-12 05:50:17.000000000 +0100 +++ dev/gdb/Makefile.in 2008-02-13 08:12:06.000000000 +0100 @@ -479,7 +479,7 @@ ALL_TARGET_OBS = \ v850-tdep.o \ vaxnbsd-tdep.o vaxobsd-tdep.o vax-tdep.o \ xstormy16-tdep.o \ - xtensa-config.o xtensa-tdep.o xtensa-linux-nat.o xtensa-linux-tdep.o \ + xtensa-config.o xtensa-tdep.o xtensa-linux-tdep.o \ glibc-tdep.o \ bsd-uthread.o \ nbsd-tdep.o obsd-tdep.o \ --------------020108060306090805080509--