]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - gcc/config/netbsd.h
netbsd-aout.h (NETBSD_OS_CPP_BUILTINS_AOUT): Define common CPP built-ins for all...
[thirdparty/gcc.git] / gcc / config / netbsd.h
index 920c0a8c6d22cae68d6b0f40979dea9b4a371b77..3f5d18313afc2dba12af4731341db29eb7c7ee43 100644 (file)
@@ -1,3 +1,45 @@
+/* Base configuration file for all NetBSD targets.
+   Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002
+   Free Software Foundation, Inc.
+
+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.  */
+
+/* TARGET_OS_CPP_BUILTINS() common to all NetBSD targets.  */
+#define NETBSD_OS_CPP_BUILTINS_COMMON()                \
+  do                                           \
+    {                                          \
+      builtin_define ("__NetBSD__");           \
+      builtin_assert ("system=unix");          \
+      builtin_assert ("system=NetBSD");                \
+    }                                          \
+  while (0)
+
+/* TARGET_OS_CPP_BUILTINS() common to all LP64 NetBSD targets.  */
+#define NETBSD_OS_CPP_BUILTINS_LP64()          \
+  do                                           \
+    {                                          \
+      builtin_define ("_LP64");                        \
+    }                                          \
+  while (0)
+
+/* CPP_SPEC parts common to all NetBSD targets.  */
+#define NETBSD_CPP_SPEC "%{posix:-D_POSIX_SOURCE}"
+
 /* NETBSD_NATIVE is defined when gcc is integrated into the NetBSD
    source tree so it can be configured appropriately without using
    the GNU configure/build mechanism. */