diff options
author | corsepiu <corsepiu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-23 03:44:03 +0000 |
---|---|---|
committer | corsepiu <corsepiu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-23 03:44:03 +0000 |
commit | 1598c1ed3c936a2a2ba4d8131ddd930d9ed622da (patch) | |
tree | 0bf13d1de955ecd49ec1b0d8ce554e1dc3386fb0 /gcc/config/avr | |
parent | daf781621add318c014cf9418834f0d406b492e4 (diff) | |
download | gcc-1598c1ed3c936a2a2ba4d8131ddd930d9ed622da.tar.gz |
2004-11-23 Ralf Corsepius <ralf.corsepius@rtems.org>
* config.gcc: Add avr-*-rtems*.
* config/avr/t-rtems: New.
* config/avr/rtems.h: New.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@91071 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/avr')
-rw-r--r-- | gcc/config/avr/rtems.h | 29 | ||||
-rw-r--r-- | gcc/config/avr/t-rtems | 3 |
2 files changed, 32 insertions, 0 deletions
diff --git a/gcc/config/avr/rtems.h b/gcc/config/avr/rtems.h new file mode 100644 index 00000000000..2371d521972 --- /dev/null +++ b/gcc/config/avr/rtems.h @@ -0,0 +1,29 @@ +/* Definitions for rtems targeting a AVR using ELF. + Copyright (C) 2004 Free Software Foundation, Inc. + Contributed by Ralf Corsepius (ralf.corsepius@rtems.org). + +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 2, 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 COPYING. If not, write to +the Free Software Foundation, 59 Temple Place - Suite 330, +Boston, MA 02111-1307, USA. */ + +/* Specify predefined symbols in preprocessor. */ + +#define TARGET_OS_CPP_BUILTINS() \ +do { \ + builtin_define ("__rtems__"); \ + builtin_define ("__USE_INIT_FINI__"); \ + builtin_assert ("system=rtems"); \ +} while (0) diff --git a/gcc/config/avr/t-rtems b/gcc/config/avr/t-rtems new file mode 100644 index 00000000000..a3ef8bd805d --- /dev/null +++ b/gcc/config/avr/t-rtems @@ -0,0 +1,3 @@ +# Multilibs for avr RTEMS targets. + +# ATM, this is just a stub |