Q: Estimated date for 2.16 release ?
Daniel Jacobowitz
drow@false.org
Thu Feb 24 18:40:00 GMT 2005
More information about the Binutils mailing list
Thu Feb 24 18:40:00 GMT 2005
- Previous message (by thread): Q: Estimated date for 2.16 release ?
- Next message (by thread): Q: Estimated date for 2.16 release ?
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
On Mon, Jan 31, 2005 at 05:24:29PM +0000, Nick Clifton wrote: > Hi Daniel, > > >>I had a discussion with Alan Modra last week and we agreed that a more > >>aggressive target deprecation policy would be a good idea, > > >Yes. Someone should take charge of doing that, starting with removing > >the targets currently marked obsolete :-) > > I have checked in the attached patch to do this. > > Cheers > Nick > > bfd/ChangeLog > 2005-01-31 Nick Clifton <nickc@redhat.com> > > * confg.bfd: Make targets scheduled for obsoletion (m68k-lynxos, > sparc-lynxos, vax-vms) be obsolete. > > ld/ChangeLog > 2005-01-31 Nick Clifton <nickc@redhat.com> > > * configure.tgt: Remove obsolete targets m68k-lynxos and > sparc-lynxos. > > gas/ChangeLog > 2005-01-31 Nick Clifton <nickc@redhat.com> > > * configure.tgt: Remove obsolete targets m68k-lynxos, sparc-lynxos > and vax-vms. Thank you, Nick! This leaves a couple of orphaned files - at least, I'm pretty sure they're orphaned. This OK? -- Daniel Jacobowitz CodeSourcery, LLC 2005-02-24 Daniel Jacobowitz <dan@codesourcery.com> * config-gas.com: Mark vax-vms as obsolete. * configure.in: Remove fmt=vms support. * config.in: Regenerate. * configure: Regenerate. * config/obj-vms.h, config/obj-vms.c, config/vms-conf.h: Remove. 2005-02-24 Daniel Jacobowitz <dan@codesourcery.com> * Makefile.am: Remove references to em68klynx.o and esparclynx.o. * emulparams/m68klynx.sh, emulparams/sparclynx.sh: Remove. Index: gas/config-gas.com =================================================================== RCS file: /big/fsf/rsync/src-cvs/src/gas/config-gas.com,v retrieving revision 1.1.1.1 diff -u -p -r1.1.1.1 config-gas.com --- gas/config-gas.com 3 May 1999 07:28:40 -0000 1.1.1.1 +++ gas/config-gas.com 24 Feb 2005 17:37:37 -0000 @@ -3,6 +3,9 @@ $! This file sets things up to build gas $! files for a VMS system. We do not use the configure script, since we $! do not have /bin/sh to execute it. $! +$! Note: Only this script contains vax-vms and alpha-vms support, but vax-vms +$! is no longer supported. +$! $! $ gas_host="vms" $ arch_indx = 1 + ((f$getsyi("CPU").ge.128).and.1) ! vax==1, alpha==2 Index: gas/configure.in =================================================================== RCS file: /big/fsf/rsync/src-cvs/src/gas/configure.in,v retrieving revision 1.168 diff -u -p -r1.168 configure.in --- gas/configure.in 22 Dec 2004 15:29:25 -0000 1.168 +++ gas/configure.in 24 Feb 2005 17:35:51 -0000 @@ -545,7 +545,6 @@ if test `set . $formats ; shift ; echo $ hp300) AC_DEFINE(OBJ_MAYBE_HP300, 1, [HP300 support?]) ;; ieee) AC_DEFINE(OBJ_MAYBE_IEEE, 1, [IEEE support?]) ;; som) AC_DEFINE(OBJ_MAYBE_SOM, 1, [SOM support?]) ;; - vms) AC_DEFINE(OBJ_MAYBE_VMS, 1, [VMS support?]) ;; esac extra_objects="$extra_objects obj-$fmt.o" done Index: ld/Makefile.am =================================================================== RCS file: /big/fsf/rsync/src-cvs/src/ld/Makefile.am,v retrieving revision 1.169 diff -u -p -r1.169 Makefile.am --- ld/Makefile.am 20 Jan 2005 19:37:49 -0000 1.169 +++ ld/Makefile.am 24 Feb 2005 17:40:01 -0000 @@ -249,7 +249,6 @@ ALL_EMULATIONS = \ em68kelf.o \ em68kelfnbsd.o \ em68klinux.o \ - em68klynx.o \ em68knbsd.o \ em68kpsos.o \ em88kbcs.o \ @@ -351,7 +350,6 @@ ALL_EMULATIONS = \ eshpe.o \ esparcaout.o \ esparclinux.o \ - esparclynx.o \ esparcnbsd.o \ est2000.o \ esun3.o \ @@ -1050,9 +1048,6 @@ em68kelfnbsd.c: $(srcdir)/emulparams/m68 em68klinux.c: $(srcdir)/emulparams/m68klinux.sh \ $(srcdir)/emultempl/linux.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS} ${GENSCRIPTS} m68klinux "$(tdir_m68klinux)" -em68klynx.c: $(srcdir)/emulparams/m68klynx.sh \ - $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/m68klynx.sc ${GEN_DEPENDS} - ${GENSCRIPTS} m68klynx "$(tdir_m68klynx)" em68knbsd.c: $(srcdir)/emulparams/m68knbsd.sh \ $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS} ${GENSCRIPTS} m68knbsd "$(tdir_m68knbsd)" @@ -1458,9 +1453,6 @@ esparcaout.c: $(srcdir)/emulparams/sparc esparclinux.c: $(srcdir)/emulparams/sparclinux.sh \ $(srcdir)/emultempl/linux.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS} ${GENSCRIPTS} sparclinux "$(tdir_sparclinux)" -esparclynx.c: $(srcdir)/emulparams/sparclynx.sh \ - $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/sparclynx.sc ${GEN_DEPENDS} - ${GENSCRIPTS} sparclynx "$(tdir_sparclynx)" esparcnbsd.c: $(srcdir)/emulparams/sparcnbsd.sh \ $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS} ${GENSCRIPTS} sparcnbsd "$(tdir_sparcnbsd)"
- Previous message (by thread): Q: Estimated date for 2.16 release ?
- Next message (by thread): Q: Estimated date for 2.16 release ?
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Binutils mailing list