diff options
Diffstat (limited to 'gcc/config/i386/lynx-ng.h')
-rw-r--r-- | gcc/config/i386/lynx-ng.h | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/gcc/config/i386/lynx-ng.h b/gcc/config/i386/lynx-ng.h index 1ef22fb23dc..08fa60f430c 100644 --- a/gcc/config/i386/lynx-ng.h +++ b/gcc/config/i386/lynx-ng.h @@ -20,9 +20,17 @@ Boston, MA 02111-1307, USA. */ #define TARGET_VERSION fprintf (stderr, " (80386, LYNX BSD syntax)"); -#undef CPP_PREDEFINES -#define CPP_PREDEFINES "-Dunix -DI386 -DLynx -DIBITS32 \ - -Asystem=unix -Asystem=lynx" +#define TARGET_OS_CPP_BUILTINS() \ + do \ + { \ + builtin_define_std ("unix"); \ + builtin_define_std ("I386"); \ + builtin_define_std ("Lynx"); \ + builtin_define_std ("IBITS32"); \ + builtin_assert ("system=unix"); \ + builtin_assert ("system=lynx"); \ + } \ + while (0) /* Provide required defaults for linker switches. */ |