diff options
author | Sebastian Huber <sebastian.huber@embedded-brains.de> | 2017-06-13 07:48:40 +0200 |
---|---|---|
committer | Sebastian Huber <sebastian.huber@embedded-brains.de> | 2017-06-14 06:59:37 +0200 |
commit | 319c2dbe240a797c6f9436bfd64f5c16045ad5a1 (patch) | |
tree | 94a748642c9af7a9ad8186222afe4d546dfa5834 | |
parent | f9a36b297d470a72ead64ed07cd5f313d9d7a502 (diff) | |
download | fsf-binutils-gdb-319c2dbe240a797c6f9436bfd64f5c16045ad5a1.zip fsf-binutils-gdb-319c2dbe240a797c6f9436bfd64f5c16045ad5a1.tar.gz fsf-binutils-gdb-319c2dbe240a797c6f9436bfd64f5c16045ad5a1.tar.bz2 |
Accept more epiphany targets
In particular this adds support for the epiphany-rtems target.
bfd/
* config.bfd (epiphany-*-elf): Accept epiphany-*-*.
ld/
* configure.tgt (epiphany-*-elf): Accept epiphany-*-*.
-rw-r--r-- | bfd/ChangeLog | 4 | ||||
-rw-r--r-- | bfd/config.bfd | 2 | ||||
-rw-r--r-- | ld/ChangeLog | 4 | ||||
-rw-r--r-- | ld/configure.tgt | 2 |
4 files changed, 10 insertions, 2 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index edff887..67fd18a 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,7 @@ +2017-06-14 Sebastian Huber <sebastian.huber@embedded-brains.de> + + * config.bfd (epiphany-*-elf): Accept epiphany-*-*. + 2017-06-13 H.J. Lu <hongjiu.lu@intel.com> PR ld/20022 diff --git a/bfd/config.bfd b/bfd/config.bfd index eb6a958..d0b509d 100644 --- a/bfd/config.bfd +++ b/bfd/config.bfd @@ -524,7 +524,7 @@ case "${targ}" in targ_defvec=d30v_elf32_vec ;; - epiphany-*-elf) + epiphany-*-*) targ_defvec=epiphany_elf32_vec ;; diff --git a/ld/ChangeLog b/ld/ChangeLog index 7995de8..4924787 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,7 @@ +2017-06-14 Sebastian Huber <sebastian.huber@embedded-brains.de> + + * configure.tgt (epiphany-*-elf): Accept epiphany-*-*. + 2017-06-13 H.J. Lu <hongjiu.lu@intel.com> * ldlang.c (lang_set_startof): Skip if config.build_constructors diff --git a/ld/configure.tgt b/ld/configure.tgt index 1b981d4..47c719c 100644 --- a/ld/configure.tgt +++ b/ld/configure.tgt @@ -206,7 +206,7 @@ d30v-*-*) targ_emul=d30velf; targ_extra_emuls="d30v_e d30v_o" ;; dlx-*-elf*) targ_emul=elf32_dlx ;; -epiphany-*-elf) targ_emul=elf32epiphany +epiphany-*-*) targ_emul=elf32epiphany targ_extra_emuls="elf32epiphany_4x4" ;; fido*-*-elf*) targ_emul=m68kelf ;; |