summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>1998-01-13 00:15:16 +0000
committerlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>1998-01-13 00:15:16 +0000
commit53202facfd1bc6fae7cc15ae53fdb143849d5375 (patch)
tree9dba6278af7e57148a0c964759823fd337740a6d
parent2668caae1916b02d08a33cc66b035200bfeb1bbe (diff)
downloadgcc-53202facfd1bc6fae7cc15ae53fdb143849d5375.tar.gz
* configure.in: (i[3456]86-UnixWare7-sysv5): Treat much like SVR4
for now. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@17323 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/ChangeLog5
-rwxr-xr-xgcc/configure12
-rw-r--r--gcc/configure.in12
3 files changed, 29 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 505b02dfb72..4bf71334384 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+Tue Jan 13 01:16:36 1998 Robert Lipe (robertl@dgii.com)
+
+ * configure.in: (i[3456]86-UnixWare7-sysv5): Treat much like SVR4
+ for now.
+
Thu Dec 18 18:40:17 1997 Mumit Khan <khan@xraylith.wisc.edu>
* i386/mingw32.h (INCOMING_RETURN_ADDR_RTX): Delete. Use the value
diff --git a/gcc/configure b/gcc/configure
index 2a484fb3b69..d216f5167c6 100755
--- a/gcc/configure
+++ b/gcc/configure
@@ -3785,6 +3785,18 @@ for machine in $build $host $target; do
thread_file='solaris'
fi
;;
+ i[3456]86-*-sysv5*) # Intel x86 on System V Release 5
+ xm_file=i386/xm-sysv4.h
+ tm_file=i386/sysv4.h
+ if [ x$stabs = xyes ]
+ then
+ tm_file="${tm_file} dbx.h"
+ fi
+ tmake_file=i386/t-crtpic
+ xmake_file=x-svr4
+ extra_parts="crtbegin.o crtend.o"
+ fixincludes=Makefile.in # The headers are just fine, thank you.
+ ;;
i[3456]86-*-sysv4*) # Intel 80386's running system V.4
xm_file=i386/xm-sysv4.h
tm_file=i386/sysv4.h
diff --git a/gcc/configure.in b/gcc/configure.in
index fed8dec306b..e13586528ca 100644
--- a/gcc/configure.in
+++ b/gcc/configure.in
@@ -960,6 +960,18 @@ for machine in $build $host $target; do
thread_file='solaris'
fi
;;
+ i[[3456]]86-*-sysv5*) # Intel x86 on System V Release 5
+ xm_file=i386/xm-sysv4.h
+ tm_file=i386/sysv4.h
+ if [[ x$stabs = xyes ]]
+ then
+ tm_file="${tm_file} dbx.h"
+ fi
+ tmake_file=i386/t-crtpic
+ xmake_file=x-svr4
+ extra_parts="crtbegin.o crtend.o"
+ fixincludes=Makefile.in # The headers are just fine, thank you.
+ ;;
i[[3456]]86-*-sysv4*) # Intel 80386's running system V.4
xm_file=i386/xm-sysv4.h
tm_file=i386/sysv4.h