diff options
Diffstat (limited to 'contrib/gcc/config/i386/mach.h')
-rw-r--r-- | contrib/gcc/config/i386/mach.h | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/contrib/gcc/config/i386/mach.h b/contrib/gcc/config/i386/mach.h index 7e2b1cc..0aa3846 100644 --- a/contrib/gcc/config/i386/mach.h +++ b/contrib/gcc/config/i386/mach.h @@ -1,13 +1,16 @@ /* Configuration for an i386 running Mach as the target machine. */ -/* We do want to add an underscore to the front of each user symbol. - i386/gas.h checks this. */ -#define YES_UNDERSCORES +#define TARGET_VERSION fprintf (stderr, " (80386, Mach)"); -#include "i386/gstabs.h" - -#undef CPP_PREDEFINES -#define CPP_PREDEFINES "-Dunix -DMACH -Asystem=unix -Asystem=mach" +#define TARGET_OS_CPP_BUILTINS() \ + do \ + { \ + builtin_define_std ("unix"); \ + builtin_define_std ("MACH"); \ + builtin_assert ("system=unix"); \ + builtin_assert ("system=mach"); \ + } \ + while (0) /* Specify extra dir to search for include files. */ #define SYSTEM_INCLUDE_DIR "/usr/mach/include" |