1116743Ssam/* Configuration for an i386 running Mach as the target machine.  */
2127780Ssam
3116743Ssam#define TARGET_VERSION fprintf (stderr, " (80386, Mach)");
4116743Ssam
5116743Ssam#define TARGET_OS_CPP_BUILTINS()		\
6116743Ssam  do						\
7116743Ssam    {						\
8116743Ssam	builtin_define_std ("unix");		\
9116743Ssam	builtin_define_std ("MACH");		\
10116743Ssam	builtin_assert ("system=unix");		\
11116743Ssam	builtin_assert ("system=mach");		\
12116743Ssam    }						\
13116743Ssam  while (0)
14116743Ssam
15116743Ssam/* Specify extra dir to search for include files.  */
16116743Ssam#define SYSTEM_INCLUDE_DIR "/usr/mach/include"
17116743Ssam
18116743Ssam/* Don't default to pcc-struct-return, because gcc is the only compiler, and
19116743Ssam   we want to retain compatibility with older gcc versions.  */
20116743Ssam#define DEFAULT_PCC_STRUCT_RETURN 0
21116743Ssam