diff options
author | Nick Clifton <nickc@redhat.com> | 2012-05-03 13:12:08 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2012-05-03 13:12:08 +0000 |
commit | f6c1a2d592af15d02c7fc93390af3c803e74c4d9 (patch) | |
tree | 760746b562a8f05f3ea3b8f163304c59ba7b96db /bfd/config.bfd | |
parent | a8acc5fb18af9d4b0da318218680534414325e13 (diff) | |
download | binutils-f6c1a2d592af15d02c7fc93390af3c803e74c4d9.zip binutils-f6c1a2d592af15d02c7fc93390af3c803e74c4d9.tar.gz binutils-f6c1a2d592af15d02c7fc93390af3c803e74c4d9.tar.bz2 |
Add support for Motorola XGATE embedded CPU
Diffstat (limited to 'bfd/config.bfd')
-rw-r--r-- | bfd/config.bfd | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/bfd/config.bfd b/bfd/config.bfd index ab72cf3..3f758c0 100644 --- a/bfd/config.bfd +++ b/bfd/config.bfd @@ -105,6 +105,7 @@ tilepro*) targ_archs=bfd_tilepro_arch ;; v850*) targ_archs=bfd_v850_arch ;; x86_64*) targ_archs=bfd_i386_arch ;; xtensa*) targ_archs=bfd_xtensa_arch ;; +xgate) targ_archs=bfd_xgate_arch ;; z80|r800) targ_archs=bfd_z80_arch ;; z8k*) targ_archs=bfd_z8k_arch ;; *) targ_archs=bfd_${targ_cpu}_arch ;; @@ -1576,7 +1577,12 @@ case "${targ}" in w65-*-*) targ_defvec=w65_vec ;; - + + xgate-*-*) + targ_defvec=bfd_elf32_xgate_vec + targ_selvecs="bfd_elf32_xgate_vec" + ;; + xstormy16-*-elf) targ_defvec=bfd_elf32_xstormy16_vec ;; |