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 /configure.ac | |
parent | c360c0fb8a1dd8ef61d986671d02071075d2c0b9 (diff) | |
download | gcc-85b8555ed3c45855b237b0f3a044eefb9382255c.zip gcc-85b8555ed3c45855b237b0f3a044eefb9382255c.tar.gz gcc-85b8555ed3c45855b237b0f3a044eefb9382255c.tar.bz2 |
.
* 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 'configure.ac')
-rw-r--r-- | configure.ac | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 7e27de4..9fee563 100644 --- a/configure.ac +++ b/configure.ac @@ -518,6 +518,12 @@ case "${target}" in powerpc-*-aix* | rs6000-*-aix*) noconfigdirs="$noconfigdirs target-libssp" ;; + rl78-*-*) + # libssp uses a misaligned load to trigger a fault, but the RL78 + # doesn't fault for those - instead, it gives a build-time error + # for explicit misaligned loads. + noconfigdirs="$noconfigdirs target-libssp" + ;; esac # Disable libstdc++-v3 for some systems. |