2011-03-21 Daniel Jacobowitz <dan@codesourcery.com>
[official-gcc.git] / gcc / config / rs6000 / eabi.h
blob3024a758620bb798deb8b1994769078000dca274
1 /* Core target definitions for GNU compiler
2 for IBM RS/6000 PowerPC targeted to embedded ELF systems.
3 Copyright (C) 1995, 1996, 2000, 2003, 2004, 2007 Free Software Foundation, Inc.
4 Contributed by Cygnus Support.
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it
9 under the terms of the GNU General Public License as published
10 by the Free Software Foundation; either version 3, or (at your
11 option) any later version.
13 GCC is distributed in the hope that it will be useful, but WITHOUT
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
15 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
16 License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
22 /* Add -meabi to target flags. */
23 #undef TARGET_DEFAULT
24 #define TARGET_DEFAULT (MASK_POWERPC | MASK_NEW_MNEMONICS | MASK_EABI)
26 /* Invoke an initializer function to set up the GOT. */
27 #define NAME__MAIN "__eabi"
28 #define INVOKE__main
30 #undef TARGET_VERSION
31 #define TARGET_VERSION fprintf (stderr, " (PowerPC Embedded)");
33 #undef TARGET_OS_CPP_BUILTINS
34 #define TARGET_OS_CPP_BUILTINS() \
35 do \
36 { \
37 builtin_define_std ("PPC"); \
38 builtin_define ("__embedded__"); \
39 builtin_assert ("system=embedded"); \
40 builtin_assert ("cpu=powerpc"); \
41 builtin_assert ("machine=powerpc"); \
42 TARGET_OS_SYSV_CPP_BUILTINS (); \
43 } \
44 while (0)