diff options
-rw-r--r-- | ld/ChangeLog | 9 | ||||
-rw-r--r-- | ld/Makefile.in | 4 |
2 files changed, 12 insertions, 1 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index 3a1aa0c..b3e93dc 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,12 @@ +Fri Oct 18 15:43:38 1996 Ian Lance Taylor <ian@cygnus.com> + + * Makefile.in (ALL_EMULATIONS): Remove eelf64alpha.o. + (ALL_64_EMULATIONS): New variable. + * configure.in: Accept --enable-64-bit-bfd option. If it is set + with --enable-targets=all, include ALL_64_EMULATIONS in + EMULATION_OFILES. + * configure: Rebuild. + start-sanitize-v850 Fri Oct 18 12:58:35 1996 Jeffrey A Law (law@cygnus.com) diff --git a/ld/Makefile.in b/ld/Makefile.in index da9cc5d..0beab7b 100644 --- a/ld/Makefile.in +++ b/ld/Makefile.in @@ -216,7 +216,6 @@ ALL_EMULATIONS = \ eelf32lmip.o \ eelf32lppc.o \ eelf32ppc.o \ - eelf64alpha.o \ eelf64_sparc.o \ eelf_i386.o \ egld960.o \ @@ -286,6 +285,9 @@ ALL_EMULATIONS = \ ez8001.o \ ez8002.o +ALL_64_EMULATIONS = \ + eelf64alpha.o + CFILES = ldctor.c ldemul.c ldexp.c ldfile.c ldlang.c \ ldmain.c ldmisc.c ldver.c ldwrite.c lexsup.c \ mri.c ldcref.c |