diff options
author | Trevor Saunders <tbsaunde+gcc@tbsaunde.org> | 2016-06-21 21:57:34 +0000 |
---|---|---|
committer | Trevor Saunders <tbsaunde@gcc.gnu.org> | 2016-06-21 21:57:34 +0000 |
commit | 5ebf89bde62fbdede2cf962ba23bbe5f6e5402fd (patch) | |
tree | 325d613db202a81415d28485ea993ed86931ad97 /gcc | |
parent | 8466af0668a71af6e3a9d75ad37f080e94d4f09c (diff) | |
download | gcc-5ebf89bde62fbdede2cf962ba23bbe5f6e5402fd.zip gcc-5ebf89bde62fbdede2cf962ba23bbe5f6e5402fd.tar.gz gcc-5ebf89bde62fbdede2cf962ba23bbe5f6e5402fd.tar.bz2 |
remove h8300-rtems support
contrib/ChangeLog:
2016-06-21 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
* config-list.mk: Remove h8300-rtems support.
libgcc/ChangeLog:
2016-06-21 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
* config.host: Remove h8300-rtems support.
gcc/ChangeLog:
2016-06-21 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
* config.gcc: Remove h8300-rtems support.
* config/h8300/rtems.h: Remove.
* config/h8300/t-rtems: Remove.
From-SVN: r237663
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config.gcc | 5 | ||||
-rw-r--r-- | gcc/config/h8300/rtems.h | 29 | ||||
-rw-r--r-- | gcc/config/h8300/t-rtems | 7 |
4 files changed, 6 insertions, 41 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 32c14a1..9c9412d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,11 @@ 2016-06-21 Trevor Saunders <tbsaunde+gcc@tbsaunde.org> + * config.gcc: Remove h8300-rtems support. + * config/h8300/rtems.h: Remove. + * config/h8300/t-rtems: Remove. + +2016-06-21 Trevor Saunders <tbsaunde+gcc@tbsaunde.org> + * config.gcc: Remove support for knetbsd. * configure.ac: Likewise. * config/i386/knetbsd-gnu.h: Remove. * config/i386/knetbsd-gnu64.h: Remove. diff --git a/gcc/config.gcc b/gcc/config.gcc index 669cb9f..cb2923e 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -237,7 +237,6 @@ md_file= # Obsolete configurations. case ${target} in avr-*rtems* \ - | h8300-*rtems* \ | m32r-*rtems* \ | mep-* \ ) @@ -1239,10 +1238,6 @@ moxie-*-moxiebox*) tm_file="${tm_file} dbxelf.h elfos.h moxie/moxiebox.h newlib-stdint.h" tmake_file="${tmake_file} moxie/t-moxiebox" ;; -h8300-*-rtems*) - tmake_file="${tmake_file} h8300/t-h8300 h8300/t-rtems" - tm_file="h8300/h8300.h dbxelf.h elfos.h h8300/elf.h h8300/rtems.h rtems.h newlib-stdint.h" - ;; h8300-*-elf*) tmake_file="h8300/t-h8300" tm_file="h8300/h8300.h dbxelf.h elfos.h newlib-stdint.h h8300/elf.h" diff --git a/gcc/config/h8300/rtems.h b/gcc/config/h8300/rtems.h deleted file mode 100644 index eb16f1d..0000000 --- a/gcc/config/h8300/rtems.h +++ /dev/null @@ -1,29 +0,0 @@ -/* Definitions for rtems targeting a H8 - Copyright (C) 1996-2016 Free Software Foundation, Inc. - Contributed by Joel Sherrill (joel@OARcorp.com). - -This file is part of GCC. - -GCC is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; either version 3, or (at your option) -any later version. - -GCC is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with GCC; see the file COPYING3. If not see -<http://www.gnu.org/licenses/>. */ - -/* Target OS preprocessor built-ins. */ -#define TARGET_OS_CPP_BUILTINS() \ - do \ - { \ - builtin_define_std ("h8300"); \ - builtin_define ("__rtems__"); \ - builtin_assert ("system=rtems"); \ - } \ - while (0) diff --git a/gcc/config/h8300/t-rtems b/gcc/config/h8300/t-rtems deleted file mode 100644 index 0d76437..0000000 --- a/gcc/config/h8300/t-rtems +++ /dev/null @@ -1,7 +0,0 @@ -# Custom multilibs for RTEMS - -# -mn is not applicable to RTEMS (-mn implies 16bit void*) - -MULTILIB_OPTIONS = mh/ms/msx mint32 -MULTILIB_DIRNAMES = h8300h h8300s h8sx int32 -MULTILIB_EXCEPTIONS = mint32 |