From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 20899 invoked by alias); 24 Jan 2002 02:26:07 -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 20836 invoked from network); 24 Jan 2002 02:26:06 -0000 Received: from unknown (HELO localhost.cygnus.com) (24.114.42.213) by sources.redhat.com with SMTP; 24 Jan 2002 02:26:06 -0000 Received: from cygnus.com (localhost [127.0.0.1]) by localhost.cygnus.com (Postfix) with ESMTP id D57E73D59; Wed, 23 Jan 2002 21:26:04 -0500 (EST) Message-ID: <3C4F70BC.6050601@cygnus.com> Date: Wed, 23 Jan 2002 18:26:00 -0000 From: Andrew Cagney User-Agent: Mozilla/5.0 (X11; U; NetBSD macppc; en-US; rv:0.9.7) Gecko/20020103 X-Accept-Language: en-us MIME-Version: 1.0 To: Alexandre Oliva Cc: Brad Lucier , jsturm@one-point.com, atpoquet@ucdavis.edu, gcc@gcc.gnu.org, gdb-patches@sources.redhat.com Subject: Re: Help needed with sparc References: <200201232315.g0NNFw309706@banach.math.purdue.edu> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-SW-Source: 2002-01/txt/msg00706.txt.bz2 Yes, but with tweeks: > Index: gdb/configure.host > =================================================================== > RCS file: /cvs/src/src/gdb/configure.host,v > retrieving revision 1.23 > diff -u -p -r1.23 configure.host > --- gdb/configure.host 2001/07/10 20:41:54 1.23 > +++ gdb/configure.host 2001/11/18 03:52:47 > @@ -18,7 +18,7 @@ m68*) gdb_host_cpu=m68k ;; > m88*) gdb_host_cpu=m88k ;; > mips*) gdb_host_cpu=mips ;; > powerpc*) gdb_host_cpu=powerpc ;; > -sparc64) gdb_host_cpu=sparc ;; > +sparcv9|sparc64) gdb_host_cpu=sparc ;; > s390*) gdb_host_cpu=s390 ;; > *) gdb_host_cpu=$host_cpu ;; > > @@ -154,6 +154,7 @@ sparc-*-sunos4*) gdb_host=sun4os4 ;; > sparc-*-sunos5*) gdb_host=sun4sol2 ;; > sparc-*-*) gdb_host=sun4os4 ;; > sparc64-*-linux*) gdb_host=linux ;; > +sparcv9-*-* | \ > sparc64-*-*) gdb_host=sun4sol2 ;; sparc64-*-* | sparcv9-*-*) .... > strongarm-*-*) gdb_host=arm ;; > Index: gdb/configure.tgt > =================================================================== > RCS file: /cvs/src/src/gdb/configure.tgt,v > retrieving revision 1.35 > diff -u -p -r1.35 configure.tgt > --- gdb/configure.tgt 2001/08/12 03:39:11 1.35 > +++ gdb/configure.tgt 2001/11/18 03:52:47 > @@ -293,6 +293,7 @@ sparc86x-*-*) gdb_target=sparclite ;; > # deleted though presumably it should be eventually. > #sparc64-*-solaris2*) gdb_target=sp64sol2 ;; > sparc64-*-linux*) gdb_target=sp64linux ;; > +sparcv9-*-* | \ > sparc64-*-*) gdb_target=sp64 ;; Ditto. > # OBSOLETE tic80-*-*) gdb_target=tic80 (the patch is very old) Andrew