diff options
author | Svein Seldal <svein@dev.seldal.com> | 2003-01-20 22:34:39 +0000 |
---|---|---|
committer | Svein Seldal <svein@dev.seldal.com> | 2003-01-20 22:34:39 +0000 |
commit | 0da35f8be8ebac5eb49ab2d7bc30022361d3d107 (patch) | |
tree | 25e93634d71321c0b80ffdecf85cf5d164d2fa44 /ld/Makefile.am | |
parent | eed2b28c05201aea858a67394caa03e0fcff3bcb (diff) | |
download | gdb-0da35f8be8ebac5eb49ab2d7bc30022361d3d107.zip gdb-0da35f8be8ebac5eb49ab2d7bc30022361d3d107.tar.gz gdb-0da35f8be8ebac5eb49ab2d7bc30022361d3d107.tar.bz2 |
Updates for fixing tic4x arch tagging of its object files.
* bfd/coffcode.h (coff_set_flags): Added get/set arch hooks.
* include/coff/tic4x.h (TICOFF_TARGET_MACHINE_GET): Fixed define bug
* include/coff/ti.h (TICOFF_TARGET_MACHINE_GET): Added macros
* ld/Makefile.am: Added etic3xcoff.o and etic4xcoff_onchip.o
* ld/Makefile.in: Regenerate
* ld/configure.tgt: Added extra target emulations
* ld/emulparams/tic3xcoff.sh: Remove old settings
* ld/emulparams/tic4xcoff.sh: Ditto
* ld/emulparams/tic3xcoff-onchip.sh: Added new
* ld/scripttempl/tic4xcoff.sc: Revise and combine both c3x and c4x
* ld/scripttempl/tic3xcoff.sc: Remove
Diffstat (limited to 'ld/Makefile.am')
-rw-r--r-- | ld/Makefile.am | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/ld/Makefile.am b/ld/Makefile.am index 01f44f2..57f7d5b 100644 --- a/ld/Makefile.am +++ b/ld/Makefile.am @@ -324,6 +324,8 @@ ALL_EMULATIONS = \ esun4.o \ etic30aout.o \ etic30coff.o \ + etic3xcoff.o \ + etic3xcoff_onchip.o \ etic4xcoff.o \ etic54xcoff.o \ etic80coff.o \ @@ -1299,6 +1301,12 @@ etic30aout.c: $(srcdir)/emulparams/tic30aout.sh \ etic30coff.c: $(srcdir)/emulparams/tic30coff.sh \ $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/tic30coff.sc ${GEN_DEPENDS} ${GENSCRIPTS} tic30coff "$(tdir_tic30coff)" +etic3xcoff.c: $(srcdir)/emulparams/tic3xcoff.sh \ + $(srcdir)/emultempl/ticoff.em $(srcdir)/scripttempl/tic4xcoff.sc ${GEN_DEPENDS} + ${GENSCRIPTS} tic3xcoff "$(tdir_tic4xcoff)" +etic3xcoff_onchip.c: $(srcdir)/emulparams/tic3xcoff_onchip.sh \ + $(srcdir)/emultempl/ticoff.em $(srcdir)/scripttempl/tic4xcoff.sc ${GEN_DEPENDS} + ${GENSCRIPTS} tic3xcoff "$(tdir_tic4xcoff)" etic4xcoff.c: $(srcdir)/emulparams/tic4xcoff.sh \ $(srcdir)/emultempl/ticoff.em $(srcdir)/scripttempl/tic4xcoff.sc ${GEN_DEPENDS} ${GENSCRIPTS} tic4xcoff "$(tdir_tic4xcoff)" |