mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2025-02-22 10:31:38 +00:00
* Makefile.am: Add new emulations avr1, avr2, avr3, avr4, avr5.
* Makefile.in: Regenerate. * configure.tgt (avr-*-*): Add avr[1-5] to targ_extra_emuls.
This commit is contained in:
parent
ed9d4749c1
commit
fae1e84fb6
@ -1,3 +1,9 @@
|
||||
2002-05-17 Marek Michalkiewicz <marekm@amelek.gda.pl>
|
||||
|
||||
* Makefile.am: Add new emulations avr1, avr2, avr3, avr4, avr5.
|
||||
* Makefile.in: Regenerate.
|
||||
* configure.tgt (avr-*-*): Add avr[1-5] to targ_extra_emuls.
|
||||
|
||||
2002-05-16 Marek Michalkiewicz <marekm@amelek.gda.pl>
|
||||
|
||||
* emulparams/avr1.sh: New file.
|
||||
|
@ -131,6 +131,11 @@ ALL_EMULATIONS = \
|
||||
eavrmega103.o \
|
||||
eavrmega161.o \
|
||||
eavrmega603.o \
|
||||
eavr1.o \
|
||||
eavr2.o \
|
||||
eavr3.o \
|
||||
eavr4.o \
|
||||
eavr5.o \
|
||||
ecoff_sparc.o \
|
||||
ecrisaout.o \
|
||||
ecriself.o \
|
||||
@ -443,6 +448,26 @@ eavrmega161.c: $(srcdir)/emulparams/avrmega161.sh \
|
||||
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32avr.sc \
|
||||
${GEN_DEPENDS}
|
||||
${GENSCRIPTS} avrmega161 "$(tdir_avr85xx)"
|
||||
eavr1.c: $(srcdir)/emulparams/avr1.sh \
|
||||
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/avr.sc \
|
||||
${GEN_DEPENDS}
|
||||
${GENSCRIPTS} avr1 "$(tdir_avr85xx)"
|
||||
eavr2.c: $(srcdir)/emulparams/avr2.sh \
|
||||
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/avr.sc \
|
||||
${GEN_DEPENDS}
|
||||
${GENSCRIPTS} avr2 "$(tdir_avr85xx)"
|
||||
eavr3.c: $(srcdir)/emulparams/avr3.sh \
|
||||
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/avr.sc \
|
||||
${GEN_DEPENDS}
|
||||
${GENSCRIPTS} avr3 "$(tdir_avr85xx)"
|
||||
eavr4.c: $(srcdir)/emulparams/avr4.sh \
|
||||
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/avr.sc \
|
||||
${GEN_DEPENDS}
|
||||
${GENSCRIPTS} avr4 "$(tdir_avr85xx)"
|
||||
eavr5.c: $(srcdir)/emulparams/avr5.sh \
|
||||
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/avr.sc \
|
||||
${GEN_DEPENDS}
|
||||
${GENSCRIPTS} avr5 "$(tdir_avr85xx)"
|
||||
ecoff_sparc.c: $(srcdir)/emulparams/coff_sparc.sh \
|
||||
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/sparccoff.sc ${GEN_DEPENDS}
|
||||
${GENSCRIPTS} coff_sparc "$(tdir_coff_sparc)"
|
||||
|
@ -240,6 +240,11 @@ ALL_EMULATIONS = \
|
||||
eavrmega103.o \
|
||||
eavrmega161.o \
|
||||
eavrmega603.o \
|
||||
eavr1.o \
|
||||
eavr2.o \
|
||||
eavr3.o \
|
||||
eavr4.o \
|
||||
eavr5.o \
|
||||
ecoff_sparc.o \
|
||||
ecrisaout.o \
|
||||
ecriself.o \
|
||||
@ -1164,6 +1169,26 @@ eavrmega161.c: $(srcdir)/emulparams/avrmega161.sh \
|
||||
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32avr.sc \
|
||||
${GEN_DEPENDS}
|
||||
${GENSCRIPTS} avrmega161 "$(tdir_avr85xx)"
|
||||
eavr1.c: $(srcdir)/emulparams/avr1.sh \
|
||||
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/avr.sc \
|
||||
${GEN_DEPENDS}
|
||||
${GENSCRIPTS} avr1 "$(tdir_avr85xx)"
|
||||
eavr2.c: $(srcdir)/emulparams/avr2.sh \
|
||||
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/avr.sc \
|
||||
${GEN_DEPENDS}
|
||||
${GENSCRIPTS} avr2 "$(tdir_avr85xx)"
|
||||
eavr3.c: $(srcdir)/emulparams/avr3.sh \
|
||||
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/avr.sc \
|
||||
${GEN_DEPENDS}
|
||||
${GENSCRIPTS} avr3 "$(tdir_avr85xx)"
|
||||
eavr4.c: $(srcdir)/emulparams/avr4.sh \
|
||||
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/avr.sc \
|
||||
${GEN_DEPENDS}
|
||||
${GENSCRIPTS} avr4 "$(tdir_avr85xx)"
|
||||
eavr5.c: $(srcdir)/emulparams/avr5.sh \
|
||||
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/avr.sc \
|
||||
${GEN_DEPENDS}
|
||||
${GENSCRIPTS} avr5 "$(tdir_avr85xx)"
|
||||
ecoff_sparc.c: $(srcdir)/emulparams/coff_sparc.sh \
|
||||
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/sparccoff.sc ${GEN_DEPENDS}
|
||||
${GENSCRIPTS} coff_sparc "$(tdir_coff_sparc)"
|
||||
|
@ -22,7 +22,7 @@ arm-*-pe) targ_emul=armpe ;
|
||||
targ_extra_ofiles="deffilep.o pe-dll.o" ;;
|
||||
arc-*-elf*) targ_emul=arcelf ;;
|
||||
avr-*-*) targ_emul=avr85xx
|
||||
targ_extra_emuls="avr1200 avr23xx avr44x4 avr4433 avrmega603 avrmega103 avrmega161" ;;
|
||||
targ_extra_emuls="avr1200 avr23xx avr44x4 avr4433 avrmega603 avrmega103 avrmega161 avr1 avr2 avr3 avr4 avr5" ;;
|
||||
cris-*-*aout*) targ_emul=crisaout
|
||||
targ_extra_emuls="criself crislinux"
|
||||
targ_extra_libpath=$targ_extra_emuls ;;
|
||||
|
Loading…
x
Reference in New Issue
Block a user