From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5813 invoked by alias); 18 Nov 2010 09:23:34 -0000 Received: (qmail 5795 invoked by uid 22791); 18 Nov 2010 09:23:32 -0000 X-SWARE-Spam-Status: No, hits=-2.0 required=5.0 tests=AWL,BAYES_00,TW_YM X-Spam-Check-By: sourceware.org Received: from p12018-ipbffx02marunouchi.tokyo.ocn.ne.jp (HELO mail.pizzafactory.jp) (222.147.75.18) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Thu, 18 Nov 2010 09:23:24 +0000 Received: from localhost (localhost [127.0.0.1]) by mail.pizzafactory.jp (Postfix) with ESMTP id 7A7FB635C23B for ; Thu, 18 Nov 2010 18:23:52 +0900 (JST) Received: from mail.pizzafactory.jp ([127.0.0.1]) by localhost (ldap.monami-software.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ZQNDO5tIC8zi for ; Thu, 18 Nov 2010 18:23:51 +0900 (JST) Received: from [192.168.0.16] (unknown [192.168.0.16]) by mail.pizzafactory.jp (Postfix) with ESMTP id 01127635C230 for ; Thu, 18 Nov 2010 18:23:50 +0900 (JST) From: Masaki Muranaka Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Subject: [patch] target triplet for Microblaze. Date: Thu, 18 Nov 2010 09:23:00 -0000 Message-Id: To: gdb-patches@sourceware.org Mime-Version: 1.0 (Apple Message framework v1082) X-IsSubscribed: yes 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: 2010-11/txt/msg00229.txt.bz2 Hello, I have a question. The CVS head can't accept microblaze*-(manufacturer)-elf and microblaze*-(m= anufacturer)-linux* as the target triplet. This behavior is not based upon the description in Autobook. http://sourceware.org/autobook/autobook/autobook_17.html The patch is below. It might we should remove microblaze*-linux-*. But I left it for the backwa= rd compatibility. ok to apply? - - - - - 2010-11-18 Masaki Muranaka * configure.tgt: Accept microblaze*-*-linux* for linux target and microblaze*-*-* for as target. - - - - - diff --git a/gdb/configure.tgt b/gdb/configure.tgt index bca2260..e065e70 100644 --- a/gdb/configure.tgt +++ b/gdb/configure.tgt @@ -323,14 +323,14 @@ mep-*-*) # No sim needed. Target uses SID. ;; =20 -microblaze*-linux-*) +microblaze*-linux-*|microblaze*-*-linux*) # Target: Xilinx MicroBlaze running Linux gdb_target_obs=3D"microblaze-tdep.o microblaze-linux-tdep.o microbl= aze-rom.o=20 monitor.o dsrec.o solib.o solib-svr4.o corelow.o \ symfile-mem.o linux-tdep.o" gdb_sim=3D../sim/microblaze/libsim.a ;; -microblaze*-xilinx-*) +microblaze*-*-*) # Target: Xilinx MicroBlaze running standalone gdb_target_obs=3D"microblaze-tdep.o microblaze-rom.o monitor.o dsre= c.o" gdb_sim=3D../sim/microblaze/libsim.a