From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 28341 invoked by alias); 28 Sep 2010 21:47:20 -0000 Received: (qmail 28328 invoked by uid 22791); 28 Sep 2010 21:47:18 -0000 X-SWARE-Spam-Status: No, hits=-2.1 required=5.0 tests=AWL,BAYES_00 X-Spam-Check-By: sourceware.org Received: from rock.gnat.com (HELO rock.gnat.com) (205.232.38.15) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 28 Sep 2010 21:47:13 +0000 Received: from localhost (localhost.localdomain [127.0.0.1]) by filtered-rock.gnat.com (Postfix) with ESMTP id 7097F2BACB1; Tue, 28 Sep 2010 17:47:11 -0400 (EDT) Received: from rock.gnat.com ([127.0.0.1]) by localhost (rock.gnat.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id KiNar-8YwuiK; Tue, 28 Sep 2010 17:47:11 -0400 (EDT) Received: from joel.gnat.com (localhost.localdomain [127.0.0.1]) by rock.gnat.com (Postfix) with ESMTP id 3DA192BACA4; Tue, 28 Sep 2010 17:47:11 -0400 (EDT) Received: by joel.gnat.com (Postfix, from userid 1000) id 79DA6F591F; Tue, 28 Sep 2010 14:47:06 -0700 (PDT) Date: Wed, 29 Sep 2010 02:44:00 -0000 From: Joel Brobecker To: Mark Kettenis Cc: gdb-patches@sourceware.org Subject: Re: [RFC/commit] Add a sparc simulator with the sparc bareboard target. Message-ID: <20100928214706.GJ3007@adacore.com> References: <1285267549-8523-1-git-send-email-brobecker@adacore.com> <201009251815.o8PIFZS6001516@glazunov.sibelius.xs4all.nl> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="DO5DiztRLs659m5i" Content-Disposition: inline In-Reply-To: <201009251815.o8PIFZS6001516@glazunov.sibelius.xs4all.nl> User-Agent: Mutt/1.5.20 (2009-06-14) 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-09/txt/msg00478.txt.bz2 --DO5DiztRLs659m5i Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-length: 319 > > gdb/ChangeLog: > > > > * configure.tgt (sparc-*-*): Set gdb_sim to ../sim/erc32/libsim.a. > > In that case, the sparc-*-rtems* case can probably go. Agreed. I was going to do that as a separate commit, but might as well do it at the same time. Attached is the patch that I checked in. Thanks, -- Joel --DO5DiztRLs659m5i Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="sparc-sim.diff" Content-length: 1514 commit cee1d53fc709075e121ad52e12ccb02cf5a53aac Author: Joel Brobecker Date: Thu Sep 23 11:20:49 2010 -0700 Add a sparc simulator with the sparc bareboard target. gdb/ChangeLog: * configure.tgt (sparc-*-*): Set gdb_sim to ../sim/erc32/libsim.a. (sparc-*-rtems*): Delete, now redundant with the sparc-*-* case. diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 7cf8d90..e8b81e8 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,10 @@ 2010-09-28 Joel Brobecker + * configure.tgt (sparc-*-*): Set gdb_sim to ../sim/erc32/libsim.a. + (sparc-*-rtems*): Delete. Now redundant with sparc-*-*. + +2010-09-28 Joel Brobecker + * NEWS: Announce Ravenscar Profile support. 2010-09-28 Joel Brobecker diff --git a/gdb/configure.tgt b/gdb/configure.tgt index 80cfb49..24a6bf9 100644 --- a/gdb/configure.tgt +++ b/gdb/configure.tgt @@ -514,15 +514,11 @@ sparc-*-solaris2* | sparcv9-*-solaris2* | sparc64-*-solaris2*) gdb_target_obs="sparc64-tdep.o sparc64-sol2-tdep.o sparc-tdep.o \ sparc-sol2-tdep.o sol2-tdep.o solib.o solib-svr4.o" ;; -sparc-*-rtems*) - # Target: SPARC embedded with simulator - gdb_target_obs="sparc-tdep.o" - gdb_sim=../sim/erc32/libsim.a - ;; sparc-*-*) # Target: SPARC gdb_target_obs="sparc-tdep.o ravenscar-thread.o \ ravenscar-sparc-thread.o" + gdb_sim=../sim/erc32/libsim.a ;; sparc64-*-*) # Target: UltraSPARC --DO5DiztRLs659m5i--