diff options
author | Joel Sherrill <joel@rtems.org> | 2016-02-26 19:59:55 +0000 |
---|---|---|
committer | Joel Sherrill <joel@gcc.gnu.org> | 2016-02-26 19:59:55 +0000 |
commit | 117799996c82c6ec6a4ba7a4a516a27266476f5e (patch) | |
tree | 89696ed6030197030217febeea5d7b0ef3371a25 /gcc/config/aarch64 | |
parent | 7cb065d6a3b5e99af216af1e0362924751363a52 (diff) | |
download | gcc-117799996c82c6ec6a4ba7a4a516a27266476f5e.zip gcc-117799996c82c6ec6a4ba7a4a516a27266476f5e.tar.gz gcc-117799996c82c6ec6a4ba7a4a516a27266476f5e.tar.bz2 |
config.gcc: Add aarch64-*-rtems*.
2016-02-26 Joel Sherrill <joel@rtems.org>
* config.gcc: Add aarch64-*-rtems*.
* gcc/config/aarch64/rtems.h: New file.
From-SVN: r233760
Diffstat (limited to 'gcc/config/aarch64')
-rw-r--r-- | gcc/config/aarch64/rtems.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gcc/config/aarch64/rtems.h b/gcc/config/aarch64/rtems.h new file mode 100644 index 0000000..a166034 --- /dev/null +++ b/gcc/config/aarch64/rtems.h @@ -0,0 +1,28 @@ +/* Definitions for RTEMS based AARCH64 system. + Copyright (C) 2016 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) |