1995-07-21 14:15:38 -04:00
|
|
|
/* Embedded ELF system support, using old AIX based calling sequence.
|
1996-01-05 11:33:59 -05:00
|
|
|
Copyright (C) 1995, 1996 Free Software Foundation, Inc.
|
1995-07-21 14:15:38 -04:00
|
|
|
Contributed by Cygnus Support.
|
|
|
|
|
|
|
|
This file is part of GNU CC.
|
|
|
|
|
|
|
|
GNU CC 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.
|
|
|
|
|
|
|
|
GNU CC 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 GNU CC; see the file COPYING. If not, write to
|
|
|
|
the Free Software Foundation, 59 Temple Place - Suite 330,
|
|
|
|
Boston, MA 02111-1307, USA. */
|
|
|
|
|
|
|
|
#include "rs6000/eabi.h"
|
|
|
|
|
|
|
|
#undef TARGET_DEFAULT
|
|
|
|
#define TARGET_DEFAULT (MASK_POWERPC | MASK_NEW_MNEMONICS | MASK_AIX_CALLS)
|
|
|
|
|
|
|
|
#undef CPP_SPEC
|
|
|
|
#define CPP_SPEC "\
|
|
|
|
%{posix: -D_POSIX_SOURCE} \
|
|
|
|
%{mrelocatable: -D_RELOCATABLE} \
|
1995-11-30 15:02:16 -05:00
|
|
|
%{mcall-sysv: -D_CALL_SYSV} %{mcall-nt: -D_CALL_NT} \
|
|
|
|
%{mcall-aix: -D_CALL_AIX} %{mcall-aixdesc: -D_CALL_AIX -D_CALL_AIXDESC} \
|
|
|
|
%{!mcall-sysv: %{!mcall-aix: %{!mcall-aixdesc: %{!mcall-nt: -D_CALL_AIX}}}} \
|
1995-07-21 14:15:38 -04:00
|
|
|
%{msoft-float: -D_SOFT_FLOAT} %{mcpu=403: -D_SOFT_FLOAT} \
|
|
|
|
%{mlittle: -D_LITTLE_ENDIAN -Amachine(littleendian)} \
|
|
|
|
%{mlittle-endian: -D_LITTLE_ENDIAN -Amachine(littleendian)} \
|
|
|
|
%{!mlittle: %{!mlittle-endian: -D_BIG_ENDIAN -Amachine(bigendian)}} \
|
|
|
|
%{!mcpu*: \
|
|
|
|
%{mpower: %{!mpower2: -D_ARCH_PWR}} \
|
|
|
|
%{mpower2: -D_ARCH_PWR2} \
|
|
|
|
%{mpowerpc*: -D_ARCH_PPC} \
|
|
|
|
%{mno-powerpc: %{!mpower: %{!mpower2: -D_ARCH_COM}}} \
|
|
|
|
%{!mno-powerpc: -D_ARCH_PPC}} \
|
|
|
|
%{mcpu=common: -D_ARCH_COM} \
|
|
|
|
%{mcpu=power: -D_ARCH_PWR} \
|
1995-12-20 12:05:26 -05:00
|
|
|
%{mcpu=power2: -D_ARCH_PWR2} \
|
1995-07-21 14:15:38 -04:00
|
|
|
%{mcpu=powerpc: -D_ARCH_PPC} \
|
|
|
|
%{mcpu=rios: -D_ARCH_PWR} \
|
|
|
|
%{mcpu=rios1: -D_ARCH_PWR} \
|
|
|
|
%{mcpu=rios2: -D_ARCH_PWR2} \
|
|
|
|
%{mcpu=rsc: -D_ARCH_PWR} \
|
|
|
|
%{mcpu=rsc1: -D_ARCH_PWR} \
|
|
|
|
%{mcpu=403: -D_ARCH_PPC} \
|
1996-01-05 11:33:59 -05:00
|
|
|
%{mcpu=505: -D_ARCH_PPC} \
|
1995-07-21 14:15:38 -04:00
|
|
|
%{mcpu=601: -D_ARCH_PPC -D_ARCH_PWR} \
|
1995-12-20 16:46:20 -05:00
|
|
|
%{mcpu=602: -D_ARCH_PPC} \
|
|
|
|
%{mcpu=603: -D_ARCH_PPC} \
|
|
|
|
%{mcpu=603e: -D_ARCH_PPC} \
|
|
|
|
%{mcpu=604: -D_ARCH_PPC} \
|
1996-01-05 11:33:59 -05:00
|
|
|
%{mcpu=620: -D_ARCH_PPC} \
|
|
|
|
%{mcpu=821: -D_ARCH_PPC} \
|
|
|
|
%{mcpu=860: -D_ARCH_PPC}"
|
1995-11-30 15:02:16 -05:00
|
|
|
|
|
|
|
/* Define this macro as a C expression for the initializer of an
|
|
|
|
array of string to tell the driver program which options are
|
|
|
|
defaults for this target and thus do not need to be handled
|
|
|
|
specially when using `MULTILIB_OPTIONS'.
|
|
|
|
|
|
|
|
Do not define this macro if `MULTILIB_OPTIONS' is not defined in
|
|
|
|
the target makefile fragment or if none of the options listed in
|
|
|
|
`MULTILIB_OPTIONS' are set by default. *Note Target Fragment::. */
|
|
|
|
|
|
|
|
#undef MULTILIB_DEFAULTS
|
|
|
|
#define MULTILIB_DEFAULTS { "mbig", "mbig-endian", "mcall-aix" }
|