From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 25683 invoked by alias); 22 Dec 2003 03:45:27 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 25605 invoked from network); 22 Dec 2003 03:45:24 -0000 Received: from unknown (HELO mail03.idc.renesas.com) (202.234.163.13) by sources.redhat.com with SMTP; 22 Dec 2003 03:45:24 -0000 Received: (from root@localhost) by guardian04.idc.renesas.com with id hBM3jD7T018733; Mon, 22 Dec 2003 12:45:13 +0900 (JST) Received: from unknown [172.20.8.68] by guardian04.idc.renesas.com with SMTP id NAA18732 ; Mon, 22 Dec 2003 12:45:13 +0900 Received: from dnma02 (dnma02.rso.renesas.com [10.15.11.200]) by dnma01.rso.renesas.com (iPlanet Messaging Server 5.2 HotFix 1.12 (built Feb 13 2003)) with ESMTP id <0HQA001SC2FBD9@dnma01.rso.renesas.com>; Mon, 22 Dec 2003 12:45:11 +0900 (JST) Received: from t1pcapricot.tool.maec.co.jp ([10.145.105.37]) by dnma02.rso.renesas.com (iPlanet Messaging Server 5.2 HotFix 1.12 (built Feb 13 2003)) with SMTP id <0HQA00H572FBFO@dnma02.rso.renesas.com>; Mon, 22 Dec 2003 12:45:11 +0900 (JST) Date: Mon, 22 Dec 2003 03:45:00 -0000 From: Kazuhiro Inaoka Subject: Re: [PATCH] New port m32r-linux target. To: Andrew Pinski Cc: gdb-patches@sources.redhat.com, Nick Clifton Message-id: <008001c3c83e$c957ae00$2569910a@tool.maec.co.jp> MIME-version: 1.0 Content-type: multipart/mixed; boundary="Boundary_(ID_rLbh6GOipfMyS+NundlcbQ)" References: <007901c3c55c$cc9229e0$2569910a@tool.maec.co.jp> <002f01c3c5fa$2c8f71c0$2569910a@tool.maec.co.jp> X-SW-Source: 2003-12/txt/msg00466.txt.bz2 This is a multi-part message in MIME format. --Boundary_(ID_rLbh6GOipfMyS+NundlcbQ) Content-type: text/plain; charset=iso-2022-jp Content-transfer-encoding: 7BIT Content-length: 1074 Hi Andrew, This patch is to add m32r-linux targets. Please commit it. Kazuhiro Inaoka gdb/ChangeLog 2003-12-18 Kazuhiro Inaoka m32r-linux and PIC support. Add new ABI of USE_RELA. * configure.host: Add m32r-linux targets. > Hi Kazuhiro, > > Thanks for making these changes. I have now applied all of your > patch apart from one small section: > > ------------------------------------------------------------------- > gdb/configure.host > > 2003-12-18 Kazuhiro Inaoka > > m32r-linux and PIC support. Add new ABI of USE_RELA. > > * configure.host: Add m32r-linux targets. > > ------------------------------------------------------------------- > > You will need to submit this to the GDB patches mailing list > (gdb-patches@sources.redhat.com) for approval before it can be > applied. > > (Note - I have applied the patches to the Simulator, since Andrew > Cagney had asked me to). > > Cheers > Nick > > --Boundary_(ID_rLbh6GOipfMyS+NundlcbQ) Content-type: application/octet-stream; name=gdb.patch Content-transfer-encoding: quoted-printable Content-disposition: attachment; filename=gdb.patch Content-length: 1003 Index: configure.host=0A= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=0A= RCS file: /cvs/src/src/gdb/configure.host,v=0A= retrieving revision 1.61=0A= diff -c -r1.61 configure.host=0A= *** configure.host 1 Dec 2003 21:10:46 -0000 1.61=0A= --- configure.host 22 Dec 2003 03:39:27 -0000=0A= ***************=0A= *** 22,27 ****=0A= --- 22,28 ----=0A= sh*) gdb_host_cpu=3Dsh ;;=0A= x86_64*) gdb_host_cpu=3Di386 ;;=0A= xscale*) gdb_host_cpu=3Darm ;;=0A= + m32r*) gdb_host_cpu=3Dm32r ;;=0A= *) gdb_host_cpu=3D$host_cpu ;;=0A= =20=20=0A= esac=0A= ***************=0A= *** 146,150 ****=0A= --- 147,153 ----=0A= x86_64-*-linux*) gdb_host=3Dx86-64linux ;;=0A= x86_64-*-freebsd*) gdb_host=3Dfbsd64 ;;=0A= x86_64-*-netbsd*) gdb_host=3Dnbsd64 ;;=0A= +=20=0A= + m32r*-*-linux*) gdb_host=3Dlinux ;;=0A= =20=20=0A= esac=0A= --Boundary_(ID_rLbh6GOipfMyS+NundlcbQ)--