aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorJim Wilson <wilson@gcc.gnu.org>1993-07-21 14:22:31 -0700
committerJim Wilson <wilson@gcc.gnu.org>1993-07-21 14:22:31 -0700
commit4fb420c2928b328c3b34532acf6e006da1058961 (patch)
tree096b5a8a2a8ae8d6c49ecdad231ad6203ea391ad /gcc
parentfb5fd6089791c6acd8e2cf028455a744fcc5d32d (diff)
downloadgcc-4fb420c2928b328c3b34532acf6e006da1058961.zip
gcc-4fb420c2928b328c3b34532acf6e006da1058961.tar.gz
gcc-4fb420c2928b328c3b34532acf6e006da1058961.tar.bz2
New file.
From-SVN: r4957
Diffstat (limited to 'gcc')
-rw-r--r--gcc/config/i386/lynx.h24
-rw-r--r--gcc/config/lynx.h77
-rw-r--r--gcc/config/sparc/lynx.h30
3 files changed, 131 insertions, 0 deletions
diff --git a/gcc/config/i386/lynx.h b/gcc/config/i386/lynx.h
new file mode 100644
index 0000000..f5fab71
--- /dev/null
+++ b/gcc/config/i386/lynx.h
@@ -0,0 +1,24 @@
+/* Definitions for Intel 386 running LynxOS.
+ Copyright (C) 1993 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, 675 Mass Ave, Cambridge, MA 02139, USA. */
+
+#include "i386/gstabs.h"
+#include "lynx.h"
+
+#undef CPP_PREDEFINES
+#define CPP_PREDEFINES "-Dunix -Di386 -DI386 -DLynx -DIBITS32"
diff --git a/gcc/config/lynx.h b/gcc/config/lynx.h
new file mode 100644
index 0000000..41d6dda
--- /dev/null
+++ b/gcc/config/lynx.h
@@ -0,0 +1,77 @@
+/* Target independent definitions for LynxOS. */
+
+/* ??? The -C option may need to change to whatever option the GNU assembler
+ actually accepts. */
+#undef ASM_SPEC
+#define ASM_SPEC "%{mcoff:-C}"
+
+#undef CPP_SPEC
+#define CPP_SPEC "%{mthreads:-D_MULTITHREADED} %{mposix:-D_POSIX_SOURCE} %{msystem-v:-I/usr/include-v}"
+
+/* Provide required defaults for linker switches. */
+/* ??? The -k option may need to change to whatever option the GNU linker
+ actually accepts. This is to produce COFF output. */
+/* ??? The -V option may need to change to whatever option the GNU linker
+ actually accepts. This is to produce System-V magic numbers. */
+#undef LINK_SPEC
+#define LINK_SPEC "%{!e*:-e __main} %{msystem-v:-V} %{mcoff:k}"
+
+#undef LIB_SPEC
+#define LIB_SPEC "%{mthreads:-L/lib/thread/}%{msystem-v:-lc_v}%{!msystem-v:%{mposix:-lc_p} -lc}"
+
+#undef STARTFILE_SPEC
+#define STARTFILE_SPEC "%{p:%{mcoff:pinit1.o%s}%{!mcoff:pinit.o%s}}%{!p:%{msystem-v:%{mcoff:vinit1.o%s}%{!mcoff:vinit.o%s}}%{!msystem-v:%{mcoff:init1.o%s}%{!mcoff:init.o%s}}}"
+
+#undef ENDFILE_SPEC
+#define ENDFILE_SPEC "%{mcoff:initn.o%s} %{p:_etext.o%s}"
+
+#undef SIZE_TYPE
+#define SIZE_TYPE "unsigned int"
+
+#undef WCHAR_TYPE
+#define WCHAR_TYPE "int"
+
+#undef PTRDIFF_TYPE
+#define PTRDIFF_TYPE "long int"
+
+/* We want to output DBX debugging information. */
+
+#define DBX_DEBUGGING_INFO
+
+/* Generate calls to memcpy, memcmp and memset. */
+
+#define TARGET_MEM_FUNCTIONS
+
+/* Handle #pragma pack and sometimes #pragma weak. */
+
+#define HANDLE_SYSV_PRAGMA
+
+#define TARGET_THREADS (target_flags & MASK_THREADS)
+#define MASK_THREADS 0x40000000
+
+#define TARGET_POSIX (target_flags & MASK_POSIX)
+#define MASK_POSIX 0x20000000
+
+#define TARGET_SYSTEM_V (target_flags & MASK_SYSTEM_V)
+#define MASK_SYSTEM_V 0x10000000
+
+#define TARGET_COFF (target_flags & MASK_COFF)
+#define MASK_COFF 0x08000000
+
+#undef SUBTARGET_SWITCHES
+#define SUBTARGET_SWITCHES \
+ {"threads", MASK_THREADS}, \
+ {"posix", MASK_POSIX}, \
+ {"system-v", MASK_SYSTEM_V}, \
+ {"coff", MASK_COFF},
+
+#undef SUBTARGET_OVERRIDE_OPTIONS
+#define SUBTARGET_OVERRIDE_OPTIONS \
+{ if (TARGET_SYSTEM_V && profile_flag) \
+ warning ("-msystem-v and -p are incompatible"); \
+ if (TARGET_SYSTEM_V && TARGET_THREADS) \
+ warning ("-msystem-v and -mthreads are incompatible"); }
+
+/* Define this so that C++ destructors will use atexit. */
+
+#define HAVE_ATEXIT
diff --git a/gcc/config/sparc/lynx.h b/gcc/config/sparc/lynx.h
new file mode 100644
index 0000000..e9020a0
--- /dev/null
+++ b/gcc/config/sparc/lynx.h
@@ -0,0 +1,30 @@
+/* Definitions for SPARC running LynxOS.
+ Copyright (C) 1993 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, 675 Mass Ave, Cambridge, MA 02139, USA. */
+
+#include "sparc/sparc.h"
+#include "lynx.h"
+
+/* ??? Must redefine to get sparclite and v8 defines. Can this be done
+ differently? */
+#undef CPP_SPEC
+#define CPP_SPEC "%{mthreads:-D_MULTITHREADED} %{msparclite:-D__sparclite__} %{mv8:-D__sparc_v8__} %{mposix:-D_POSIX_SOURCE} %{msystem-v:-lynx-sysv}"
+
+/* Names to predefine in the preprocessor for this target machine. */
+#undef CPP_PREDEFINES
+#define CPP_PREDEFINES "-Dunix -Dsparc -DLynx -DIBITS32"