diff options
author | DJ Delorie <dj@redhat.com> | 2011-11-29 16:36:43 -0500 |
---|---|---|
committer | DJ Delorie <dj@gcc.gnu.org> | 2011-11-29 16:36:43 -0500 |
commit | 85b8555ed3c45855b237b0f3a044eefb9382255c (patch) | |
tree | 65c814557c3c0e61f746e922c96ca834174464c4 /gcc/config.gcc | |
parent | c360c0fb8a1dd8ef61d986671d02071075d2c0b9 (diff) | |
download | gcc-85b8555ed3c45855b237b0f3a044eefb9382255c.tar.gz |
.
* configure.ac (rl78-*-*) New case.
* configure: Regenerate.
* MAINTAINERS: Add myself as RL78 maintainer.
libgcc
* config.host (rl78-*-elf): New case.
* config/rl78: New directory for the Renesas RL78.
gcc
* config.gcc (rl78-*-elf): New case.
* doc/extend.texi: Add RL78 documentation.
* doc/invoke.texi: Likewise.
* doc/md.texi: Likewise.
* doc/contrib.texi: Add RL78.
* doc/install.texi: Add rl78-*-elf.
* config/rl78: New directory for the Renesas RL78.
contrib
* config-list.mk (LIST): Add rl78-elf.
From-SVN: r181819
Diffstat (limited to 'gcc/config.gcc')
-rw-r--r-- | gcc/config.gcc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gcc/config.gcc b/gcc/config.gcc index 45ba919dadf..a4772892b45 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -2115,6 +2115,13 @@ rs6000-ibm-aix[6789].* | powerpc-ibm-aix[6789].*) use_gcc_stdint=wrap extra_headers=altivec.h ;; +rl78-*-elf*) + tm_file="dbxelf.h elfos.h newlib-stdint.h ${tm_file}" + target_has_targetm_common=no + c_target_objs="rl78-c.o" + cxx_target_objs="rl78-c.o" + tmake_file="${tmake_file} rl78/t-rl78" + ;; rx-*-elf*) tm_file="dbxelf.h elfos.h newlib-stdint.h ${tm_file}" tmake_file="${tmake_file} rx/t-rx" |