diff options
author | Angela Marie Thomas <angela@cygnus> | 1996-10-04 19:25:09 +0000 |
---|---|---|
committer | Angela Marie Thomas <angela@cygnus> | 1996-10-04 19:25:09 +0000 |
commit | 3dd3627a9343a570eba1ba153cf97b970666592c (patch) | |
tree | 42ebb68295c8b473a6f814f87810e517a761e64f | |
parent | cd8a9026b9d5118ec654e00ac17e659749d0fa70 (diff) | |
download | gdb-3dd3627a9343a570eba1ba153cf97b970666592c.zip gdb-3dd3627a9343a570eba1ba153cf97b970666592c.tar.gz gdb-3dd3627a9343a570eba1ba153cf97b970666592c.tar.bz2 |
use config/mh-dgux386 for i[345]86-dg-dgux host configuration file
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | config/mh-dgux386 | 22 | ||||
-rw-r--r-- | configure.in | 2 |
3 files changed, 28 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Fri Oct 4 12:22:58 1996 Angela Marie Thomas (angela@cygnus.com) + + * configure.in: Use config/mh-dgux386 for i[345]86-dg-dgux + host configuration file. + Thu Oct 3 09:28:25 1996 Jeffrey A Law (law@cygnus.com) * configure.in: Break mn10x00 support into separate diff --git a/config/mh-dgux386 b/config/mh-dgux386 new file mode 100644 index 0000000..15885c3 --- /dev/null +++ b/config/mh-dgux386 @@ -0,0 +1,22 @@ +# from mh-dgux +HDEFINES=-DHOST_SYS=DGUX_SYS +CC=gcc -Wall -ansi -D__using_DGUX +RANLIB = true + +# from mh-sysv4 +# Define SYSV as -DSYSV if you are using a System V operating system. +SYSV = -DSYSV -DSVR4 +RANLIB = true + +# C++ debugging is not yet supported under SVR4 (DWARF) +CXXFLAGS=-O + +# The l flag generates a warning from the SVR4 archiver, remove it. +AR_FLAGS = cr + +X11_EXTRA_LIBS = -lnsl + +# from angela +# no debugging due to broken compiler, use BSD style timeofday +CFLAGS=-O -D_BSD_TIMEOFDAY_FLAVOR + diff --git a/configure.in b/configure.in index fc53180..1ef9239 100644 --- a/configure.in +++ b/configure.in @@ -122,7 +122,7 @@ case "${host}" in mips*-sgi-irix3*) host_makefile_frag=config/mh-sysv ;; mips*-*-sysv4*) host_makefile_frag=config/mh-sysv4 ;; mips*-*-sysv*) host_makefile_frag=config/mh-riscos ;; - i[3456]86-*-dgux*) host_makefile_frag=config/mh-sysv4 ;; + i[3456]86-*-dgux*) host_makefile_frag=config/mh-dgux386 ;; i[3456]86-ncr-sysv4.3) host_makefile_frag=config/mh-ncrsvr43 ;; i[3456]86-ncr-sysv4*) host_makefile_frag=config/mh-ncr3000 ;; i[3456]86-*-sco3.2v5*) host_makefile_frag=config/mh-sysv ;; |