diff options
author | Robert Lipe <robertl@dgii.com> | 1998-01-13 00:15:16 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-01-12 17:15:16 -0700 |
commit | fe07d4c1cc13824af1e19e12729362c183e9e807 (patch) | |
tree | 9dba6278af7e57148a0c964759823fd337740a6d | |
parent | 936cb323452eab0717bca1231c6d14ec92841f35 (diff) | |
download | gcc-fe07d4c1cc13824af1e19e12729362c183e9e807.zip gcc-fe07d4c1cc13824af1e19e12729362c183e9e807.tar.gz gcc-fe07d4c1cc13824af1e19e12729362c183e9e807.tar.bz2 |
configure.in: (i[3456]86-UnixWare7-sysv5): Treat much like SVR4 for now.
* configure.in: (i[3456]86-UnixWare7-sysv5): Treat much like SVR4
for now.
From-SVN: r17323
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rwxr-xr-x | gcc/configure | 12 | ||||
-rw-r--r-- | gcc/configure.in | 12 |
3 files changed, 29 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 505b02d..4bf7133 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 2a484fb..d216f51 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 fed8dec..e135865 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 |