diff -c3pbB --exclude-from=.patch_ignore src/ld/ChangeLog src-dlx/ld/ChangeLog *** src/ld/ChangeLog Thu May 23 21:50:33 2002 --- src-dlx/ld/ChangeLog Thu May 23 23:10:42 2002 *************** *** 1,3 **** --- 1,9 ---- + 2002-05-22 Kuang Hwa Lin + + * Makefile.in, configure.tgt: Added DLX configuration and make target. + + * emulparams/elf32_dlx.sh: New files to support DLX target. + 2002-05-23 Jakub Jelinek * scripttempl/elf.sc: Add .rel{,a}.t{bss,data}, .tdata and .tbss. diff -c3pbB --exclude-from=.patch_ignore src/ld/Makefile.in src-dlx/ld/Makefile.in *** src/ld/Makefile.in Tue May 21 11:11:18 2002 --- src-dlx/ld/Makefile.in Tue May 21 11:02:46 2002 *************** ALL_EMULATIONS = \ *** 256,261 **** --- 256,262 ---- ed30velf.o \ edelta68.o \ eebmon29k.o \ + eelf32_dlx.o \ eelf32_i960.o \ eelf32_i860.o \ eelf32_sparc.o \ *************** eelf32_i860.c: $(srcdir)/emulparams/elf3 *** 1248,1253 **** --- 1249,1257 ---- eelf32_i960.c: $(srcdir)/emulparams/elf32_i960.sh \ $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} ${GENSCRIPTS} elf32_i960 "$(tdir_elf32_i960)" + eelf32_dlx.c: $(srcdir)/emulparams/elf32_dlx.sh \ + $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} + ${GENSCRIPTS} elf32_dlx "$(tdir_elf32_dlx)" eelf32b4300.c: $(srcdir)/emulparams/elf32b4300.sh \ $(srcdir)/emulparams/elf32bmip.sh \ $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} diff -c3pbB --exclude-from=.patch_ignore src/ld/configure.tgt src-dlx/ld/configure.tgt *** src/ld/configure.tgt Thu May 23 21:50:33 2002 --- src-dlx/ld/configure.tgt Thu May 23 21:42:33 2002 *************** i960-*-coff) targ_emul=gld960coff ;; *** 101,106 **** --- 101,107 ---- i960-intel-nindy) targ_emul=gld960 ;; i960-*-rtems*) targ_emul=gld960coff ;; i960-*-elf*) targ_emul=elf32_i960 ;; + dlx-*-elf*) targ_emul=elf32_dlx ;; ia64-*-elf*) targ_emul=elf64_ia64 ;; ia64-*-freebsd*) targ_emul=elf64_ia64_fbsd targ_extra_emuls="elf64_ia64" ;; Common subdirectories: src/ld/emulparams and src-dlx/ld/emulparams Common subdirectories: src/ld/emultempl and src-dlx/ld/emultempl Common subdirectories: src/ld/scripttempl and src-dlx/ld/scripttempl Common subdirectories: src/ld/testsuite and src-dlx/ld/testsuite