* [PATCH] forth (and last) multi-arch step for v850
@ 2002-05-16 5:12 Corinna Vinschen
2002-05-16 8:24 ` Eli Zaretskii
0 siblings, 1 reply; 8+ messages in thread
From: Corinna Vinschen @ 2002-05-16 5:12 UTC (permalink / raw)
To: gdb-patches
Hi,
this step just finalizes multi-arching v850.
- config/v850/tm-v850.h has been eliminated and removed from v850.mt.
- configure.tgt contains a new line `v850) gdb_multi_arch=yes ;;'.
Corinna
2002-05-16 Corinna Vinschen <vinschen@redhat.com>
* configure.tgt: Mark v850 as multi-arched.
* config/v850/tm-v850.h: Remove file.
* config/v850/v850.mt: Eliminate TM_FILE.
Index: configure.tgt
===================================================================
RCS file: /cvs/src/src/gdb/configure.tgt,v
retrieving revision 1.64
diff -u -p -r1.64 configure.tgt
--- configure.tgt 14 May 2002 15:22:29 -0000 1.64
+++ configure.tgt 16 May 2002 12:05:39 -0000
@@ -310,5 +310,6 @@ d10v) gdb_multi_arch=yes ;;
m68hc11) gdb_multi_arch=yes ;;
mn10300) gdb_multi_arch=yes ;;
x86-64linux) gdb_multi_arch=yes ;;
+v850) gdb_multi_arch=yes ;;
xstormy16) gdb_multi_arch=yes ;;
esac
Index: config/v850/tm-v850.h
===================================================================
RCS file: config/v850/tm-v850.h
diff -N config/v850/tm-v850.h
--- config/v850/tm-v850.h 16 May 2002 11:43:08 -0000 1.11
+++ /dev/null 1 Jan 1970 00:00:00 -0000
@@ -1,23 +0,0 @@
-/* Parameters for execution on an NEC V850 processor.
-
- Copyright 1996, 1997, 1998, 1999, 2000, 2002 Free Software
- Foundation, Inc.
-
- This file is part of GDB.
-
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
- (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place - Suite 330,
- Boston, MA 02111-1307, USA. */
-
-#define GDB_MULTI_ARCH 2
Index: config/v850/v850.mt
===================================================================
RCS file: /cvs/src/src/gdb/config/v850/v850.mt,v
retrieving revision 1.1.1.1
diff -u -p -r1.1.1.1 v850.mt
--- config/v850/v850.mt 16 Apr 1999 01:34:26 -0000 1.1.1.1
+++ config/v850/v850.mt 16 May 2002 12:05:39 -0000
@@ -1,5 +1,5 @@
# Target: NEC V850 processor
TDEPFILES= v850-tdep.o
-TM_FILE= tm-v850.h
+# TM_FILE= tm-v850.h
SIM_OBS = remote-sim.o
SIM = ../sim/v850/libsim.a
--
Corinna Vinschen
Cygwin Developer
Red Hat, Inc.
mailto:vinschen@redhat.com
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] forth (and last) multi-arch step for v850
2002-05-16 5:12 [PATCH] forth (and last) multi-arch step for v850 Corinna Vinschen
@ 2002-05-16 8:24 ` Eli Zaretskii
2002-05-16 12:16 ` Corinna Vinschen
0 siblings, 1 reply; 8+ messages in thread
From: Eli Zaretskii @ 2002-05-16 8:24 UTC (permalink / raw)
To: gdb-patches
> Date: Thu, 16 May 2002 14:11:55 +0200
> From: Corinna Vinschen <vinschen@redhat.com>
>
> this step just finalizes multi-arching v850.
Congrats!
> - config/v850/tm-v850.h has been eliminated and removed from v850.mt.
> - configure.tgt contains a new line `v850) gdb_multi_arch=yes ;;'.
Shouldn't there be some note in NEWS about this?
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] forth (and last) multi-arch step for v850
2002-05-16 8:24 ` Eli Zaretskii
@ 2002-05-16 12:16 ` Corinna Vinschen
2002-05-16 12:39 ` Eli Zaretskii
0 siblings, 1 reply; 8+ messages in thread
From: Corinna Vinschen @ 2002-05-16 12:16 UTC (permalink / raw)
To: gdb-patches
On Thu, May 16, 2002 at 06:22:58PM +0300, Eli Zaretskii wrote:
> > Date: Thu, 16 May 2002 14:11:55 +0200
> > From: Corinna Vinschen <vinschen@redhat.com>
> >
> > this step just finalizes multi-arching v850.
>
> Congrats!
>
> > - config/v850/tm-v850.h has been eliminated and removed from v850.mt.
> > - configure.tgt contains a new line `v850) gdb_multi_arch=yes ;;'.
>
> Shouldn't there be some note in NEWS about this?
Something like that:
Index: NEWS
===================================================================
RCS file: /cvs/src/src/gdb/NEWS,v
retrieving revision 1.68
diff -u -p -r1.68 NEWS
--- NEWS 9 May 2002 23:38:20 -0000 1.68
+++ NEWS 16 May 2002 19:14:52 -0000
@@ -3,6 +3,10 @@
*** Changes since GDB 5.2:
+* Multi-arched targets.
+
+NEC V850 v850-*-*
+
* New targets.
Atmel AVR avr*-*-*
???
Btw., I've closed the related gnats PR 307.
Corinna
--
Corinna Vinschen
Cygwin Developer
Red Hat, Inc.
mailto:vinschen@redhat.com
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] forth (and last) multi-arch step for v850
2002-05-16 12:16 ` Corinna Vinschen
@ 2002-05-16 12:39 ` Eli Zaretskii
2002-05-17 3:14 ` Corinna Vinschen
0 siblings, 1 reply; 8+ messages in thread
From: Eli Zaretskii @ 2002-05-16 12:39 UTC (permalink / raw)
To: gdb-patches
> Date: Thu, 16 May 2002 21:16:05 +0200
> From: Corinna Vinschen <vinschen@redhat.com>
> >
> > Shouldn't there be some note in NEWS about this?
>
> Something like that:
>
> Index: NEWS
> ===================================================================
> RCS file: /cvs/src/src/gdb/NEWS,v
> retrieving revision 1.68
> diff -u -p -r1.68 NEWS
> --- NEWS 9 May 2002 23:38:20 -0000 1.68
> +++ NEWS 16 May 2002 19:14:52 -0000
> @@ -3,6 +3,10 @@
>
> *** Changes since GDB 5.2:
>
> +* Multi-arched targets.
> +
> +NEC V850 v850-*-*
> +
Yes, something like that.
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] forth (and last) multi-arch step for v850
2002-05-16 12:39 ` Eli Zaretskii
@ 2002-05-17 3:14 ` Corinna Vinschen
2002-05-17 10:08 ` Andrew Cagney
0 siblings, 1 reply; 8+ messages in thread
From: Corinna Vinschen @ 2002-05-17 3:14 UTC (permalink / raw)
To: gdb-patches
On Thu, May 16, 2002 at 10:37:55PM +0300, Eli Zaretskii wrote:
> > Date: Thu, 16 May 2002 21:16:05 +0200
> > From: Corinna Vinschen <vinschen@redhat.com>
> > >
> > > Shouldn't there be some note in NEWS about this?
> >
> > Something like that:
> >
> > Index: NEWS
> > ===================================================================
> > RCS file: /cvs/src/src/gdb/NEWS,v
> > retrieving revision 1.68
> > diff -u -p -r1.68 NEWS
> > --- NEWS 9 May 2002 23:38:20 -0000 1.68
> > +++ NEWS 16 May 2002 19:14:52 -0000
> > @@ -3,6 +3,10 @@
> >
> > *** Changes since GDB 5.2:
> >
> > +* Multi-arched targets.
> > +
> > +NEC V850 v850-*-*
> > +
>
> Yes, something like that.
Applied.
Corinna
--
Corinna Vinschen
Cygwin Developer
Red Hat, Inc.
mailto:vinschen@redhat.com
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] forth (and last) multi-arch step for v850
2002-05-17 3:14 ` Corinna Vinschen
@ 2002-05-17 10:08 ` Andrew Cagney
2002-05-18 4:22 ` Richard Earnshaw
0 siblings, 1 reply; 8+ messages in thread
From: Andrew Cagney @ 2002-05-17 10:08 UTC (permalink / raw)
To: gdb-patches
>> > +* Multi-arched targets.
>> > +
>> > +NEC V850 v850-*-*
>> > +
>
>>
>> Yes, something like that.
>
Want to add vax, arm and alpha? (Any more from this round?)
Andrew
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] forth (and last) multi-arch step for v850
2002-05-17 10:08 ` Andrew Cagney
@ 2002-05-18 4:22 ` Richard Earnshaw
2002-05-18 14:41 ` Andrew Cagney
0 siblings, 1 reply; 8+ messages in thread
From: Richard Earnshaw @ 2002-05-18 4:22 UTC (permalink / raw)
To: Andrew Cagney; +Cc: gdb-patches, Richard.Earnshaw
>
> >> > +* Multi-arched targets.
> >> > +
> >> > +NEC V850 v850-*-*
> >> > +
> >
> >>
> >> Yes, something like that.
> >
>
> Want to add vax, arm and alpha? (Any more from this round?)
>
ARM already has an entry -- it was part of the 5.2 news.
R.
BTW On the main GDB page there's a broken link (trailing '/' on the URL).
News
April 30, 2002: GDB 5.2 Released!
GDB version 5.2 <-----broken link here
has been released.
Much thanks to all the contributors.
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] forth (and last) multi-arch step for v850
2002-05-18 4:22 ` Richard Earnshaw
@ 2002-05-18 14:41 ` Andrew Cagney
0 siblings, 0 replies; 8+ messages in thread
From: Andrew Cagney @ 2002-05-18 14:41 UTC (permalink / raw)
To: Richard.Earnshaw; +Cc: gdb-patches
> BTW On the main GDB page there's a broken link (trailing '/' on the URL).
>
> News
>
> April 30, 2002: GDB 5.2 Released!
>
> GDB version 5.2 <-----broken link here
> has been released.
> Much thanks to all the contributors.
>
Thanks! Fixed (along with the copy in news/).
BTW, you should also have write access to the web pages. See:
http://sources.redhat.com/gdb/current/
Andrew
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2002-05-18 21:41 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-05-16 5:12 [PATCH] forth (and last) multi-arch step for v850 Corinna Vinschen
2002-05-16 8:24 ` Eli Zaretskii
2002-05-16 12:16 ` Corinna Vinschen
2002-05-16 12:39 ` Eli Zaretskii
2002-05-17 3:14 ` Corinna Vinschen
2002-05-17 10:08 ` Andrew Cagney
2002-05-18 4:22 ` Richard Earnshaw
2002-05-18 14:41 ` Andrew Cagney
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox