diff options
author | Sebastian Huber <sebastian.huber@embedded-brains.de> | 2018-01-05 06:17:22 +0000 |
---|---|---|
committer | Sebastian Huber <sh@gcc.gnu.org> | 2018-01-05 06:17:22 +0000 |
commit | 64b371b1b5a681e58c22c6decb1884e0811d6014 (patch) | |
tree | c9100e453f83ba4a923ad19a80a52fe91f75c26d /gcc/config/epiphany/rtems.h | |
parent | e170de7c7f8f9ccfd26907e5c4c5730f623647e5 (diff) | |
download | gcc-64b371b1b5a681e58c22c6decb1884e0811d6014.tar.gz |
RTEMS/EPIPHANY: Add RTEMS support
gcc/
* config.gcc (epiphany-*-elf*): Add (epiphany-*-rtems*) configuration.
* config/epiphany/rtems.h: New file.
libgcc/
* config.host (epiphany-*-elf*): Add (epiphany-*-rtems*)
configuration.
From-SVN: r256273
Diffstat (limited to 'gcc/config/epiphany/rtems.h')
-rw-r--r-- | gcc/config/epiphany/rtems.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gcc/config/epiphany/rtems.h b/gcc/config/epiphany/rtems.h new file mode 100644 index 00000000000..a9971f8c0b6 --- /dev/null +++ b/gcc/config/epiphany/rtems.h @@ -0,0 +1,28 @@ +/* Definitions for RTEMS based EPIPHANY systems. + Copyright (C) 2018 Free Software Foundation, Inc. + + 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/>. */ + +#define HAS_INIT_SECTION + +#undef TARGET_OS_CPP_BUILTINS +#define TARGET_OS_CPP_BUILTINS() \ + do { \ + builtin_define ("__rtems__"); \ + builtin_define ("__USE_INIT_FINI__"); \ + builtin_assert ("system=rtems"); \ + } while (0) |