Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
* [patch/rfc] Obsolete fr30
@ 2002-07-14  8:56 Andrew Cagney
  2002-07-14  9:31 ` Daniel Jacobowitz
  0 siblings, 1 reply; 4+ messages in thread
From: Andrew Cagney @ 2002-07-14  8:56 UTC (permalink / raw)
  To: gdb-patches

[-- Attachment #1: Type: text/plain, Size: 174 bytes --]

Hello,

Following on from the d30v, this patch marks the fr30 as obsolete.

Baring someone stepping forward to multi-arch this, I'll commit it in a 
few days.

enjoy,
Andrew

[-- Attachment #2: diffs --]
[-- Type: text/plain, Size: 3048 bytes --]

Index: gdb/ChangeLog
2002-07-13  Andrew Cagney  <ac131313@redhat.com>

	* NEWS: Mention that the FR30 has been made obsolete.
	* fr30-tdep.c: Mark file as obsolete.
	* config/fr30/tm-fr30.h: Ditto.
	* config/fr30/fr30.mt: Ditto.
	* configure.tgt: Mark fr30-*-elf as obsolete.
	* MAINTAINERS: Mark fr30-elf as obsolete.

Index: sim/ChangeLog
2002-07-13  Andrew Cagney  <ac131313@redhat.com>

	* configure.in (extra_subdirs): Mark fr30-*-* as obsolete.
	* configure: Re-generate.

Index: sim/fr30/ChangeLog
2002-07-13  Andrew Cagney  <ac131313@redhat.com>

	* Makefile.in: Mark file as obsolete.
	* cpu.c, arch.h, arch.c, cpu.h, decode.h: Ditto.
	* decode.c, fr30-sim.h, devices.c, fr30.c: Ditto.
	* model.c, sem-switch.c, sim-if.c: Ditto.
	* sim-main.h, traps.c, sem.c: Ditto.
	* TODO, README: Ditto.
	* configure.in: Ditto.
	* configure: Regenerate.

Index: gdb/MAINTAINERS
===================================================================
RCS file: /cvs/src/src/gdb/MAINTAINERS,v
retrieving revision 1.188
diff -u -r1.188 MAINTAINERS
--- gdb/MAINTAINERS	14 Jul 2002 00:15:19 -0000	1.188
+++ gdb/MAINTAINERS	14 Jul 2002 01:50:09 -0000
@@ -83,9 +83,7 @@
 	djgpp		--target=i586-pc-msdosdjgpp ,-Werror
 			(See native and host)
 
-	fr30		--target=fr30-elf -Werror
-			Maintenance only
-			OBSOLETE candidate, not multi-arch
+	fr30		(--target=fr30-elf OBSOLETE)
 
 	h8300		--target=h8300hms -Werror
 			Maintenance only
Index: gdb/NEWS
===================================================================
RCS file: /cvs/src/src/gdb/NEWS,v
retrieving revision 1.77
diff -u -r1.77 NEWS
--- gdb/NEWS	14 Jul 2002 00:28:46 -0000	1.77
+++ gdb/NEWS	14 Jul 2002 01:56:05 -0000
@@ -61,6 +61,7 @@
 permanently REMOVED.
 
 Mitsubishi D30V					d30v-*-*
+Fujitsu FR30					fr30-*-elf*
 
 * REMOVED configurations and files
 
Index: gdb/configure.tgt
===================================================================
RCS file: /cvs/src/src/gdb/configure.tgt,v
retrieving revision 1.72
diff -u -r1.72 configure.tgt
--- gdb/configure.tgt	14 Jul 2002 00:15:19 -0000	1.72
+++ gdb/configure.tgt	14 Jul 2002 01:56:13 -0000
@@ -72,7 +72,7 @@
 h8500-*-*)		gdb_target=h8500 ;;
 
 
-fr30-*-elf*)		gdb_target=fr30 ;;
+# OBSOLETE fr30-*-elf*)		gdb_target=fr30 ;;
 
 frv-*-*)		gdb_target=frv ;;
 
@@ -285,8 +285,8 @@
 
 vax-*-*)		gdb_target=vax ;;
 
-fr30-*-*)		gdb_target=fr30
-			;;
+# OBSOLETE fr30-*-*)		gdb_target=fr30
+# OBSOLETE 			;;
 
 v850*-*-*)		gdb_target=v850
 			case ${gdb_host} in
Index: sim/configure.in
===================================================================
RCS file: /cvs/src/src/sim/configure.in,v
retrieving revision 1.9
diff -u -r1.9 configure.in
--- sim/configure.in	14 Jul 2002 00:15:20 -0000	1.9
+++ sim/configure.in	14 Jul 2002 01:57:31 -0000
@@ -64,7 +64,7 @@
 # OBSOLETE 	only_if_gcc=yes
 # OBSOLETE 	extra_subdirs="${extra_subdirs} igen"
 # OBSOLETE 	;;
-  fr30-*-*)		sim_target=fr30 ;;
+# OBSOLETE   fr30-*-*)		sim_target=fr30 ;;
   h8300*-*-*)		sim_target=h8300 ;;
   h8500-*-*)		sim_target=h8500 ;;
   i960-*-*)		sim_target=i960 ;;

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [patch/rfc] Obsolete fr30
  2002-07-14  8:56 [patch/rfc] Obsolete fr30 Andrew Cagney
@ 2002-07-14  9:31 ` Daniel Jacobowitz
  2002-07-15  9:00   ` Dave Brolley
  0 siblings, 1 reply; 4+ messages in thread
From: Daniel Jacobowitz @ 2002-07-14  9:31 UTC (permalink / raw)
  To: Andrew Cagney; +Cc: gdb-patches

On Sun, Jul 14, 2002 at 11:09:33AM -0400, Andrew Cagney wrote:
> Hello,
> 
> Following on from the d30v, this patch marks the fr30 as obsolete.
> 
> Baring someone stepping forward to multi-arch this, I'll commit it in a 
> few days.
> 
> enjoy,
> Andrew

Dave Brolley was trying to find someone to do this, if I recall
correctly, since he was interested but couldn't maintain the non-sim
portions.  I don't know if he succeeded or not...

-- 
Daniel Jacobowitz                           Carnegie Mellon University
MontaVista Software                         Debian GNU/Linux Developer


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [patch/rfc] Obsolete fr30
  2002-07-14  9:31 ` Daniel Jacobowitz
@ 2002-07-15  9:00   ` Dave Brolley
  2002-07-16  8:28     ` Andrew Cagney
  0 siblings, 1 reply; 4+ messages in thread
From: Dave Brolley @ 2002-07-15  9:00 UTC (permalink / raw)
  To: Daniel Jacobowitz; +Cc: Andrew Cagney, gdb-patches

Daniel Jacobowitz wrote:

>On Sun, Jul 14, 2002 at 11:09:33AM -0400, Andrew Cagney wrote:
>
>>Hello,
>>
>>Following on from the d30v, this patch marks the fr30 as obsolete.
>>
>>Baring someone stepping forward to multi-arch this, I'll commit it in a 
>>few days.
>>
>>enjoy,
>>Andrew
>>
>
>Dave Brolley was trying to find someone to do this, if I recall
>correctly, since he was interested but couldn't maintain the non-sim
>portions.  I don't know if he succeeded or not...
>
I did not succeed  :-(



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [patch/rfc] Obsolete fr30
  2002-07-15  9:00   ` Dave Brolley
@ 2002-07-16  8:28     ` Andrew Cagney
  0 siblings, 0 replies; 4+ messages in thread
From: Andrew Cagney @ 2002-07-16  8:28 UTC (permalink / raw)
  To: Dave Brolley; +Cc: Daniel Jacobowitz, gdb-patches

> Daniel Jacobowitz wrote:
> 
> On Sun, Jul 14, 2002 at 11:09:33AM -0400, Andrew Cagney wrote:
> 
> Hello,
> 
> Following on from the d30v, this patch marks the fr30 as obsolete.
> 
> Baring someone stepping forward to multi-arch this, I'll commit it in a few days.
> 
> enjoy,
> Andrew
> 
> 
> Dave Brolley was trying to find someone to do this, if I recall
> correctly, since he was interested but couldn't maintain the non-sim
> portions.  I don't know if he succeeded or not...
> 
> I did not succeed  :-(

Ah!  It's going going, gone ... (but not forgotten).

Andrew



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2002-07-16 14:24 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-07-14  8:56 [patch/rfc] Obsolete fr30 Andrew Cagney
2002-07-14  9:31 ` Daniel Jacobowitz
2002-07-15  9:00   ` Dave Brolley
2002-07-16  8:28     ` Andrew Cagney

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox