From: Peter Schauer Date: Sat, 15 Jul 1995 08:57:59 +0000 (+0000) Subject: * config/alpha/alpha-osf3.mh, config/alpha/nm-osf3.h: New files X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b8ea4fec37d3cdb391719f52ddff3ff523f6e9e3;p=binutils-gdb.git * config/alpha/alpha-osf3.mh, config/alpha/nm-osf3.h: New files for OSF/1-3.x procfs support. * configure.in (alpha-dec-osf): Use them when configuring for OSF/1-3.x. * configure: Updated. * target.c: Include . --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 3fe9982b32b..8c59298a368 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,12 @@ +Sat Jul 15 01:02:53 1995 Peter Schauer (pes@regent.e-technik.tu-muenchen.de) + + * config/alpha/alpha-osf3.mh, config/alpha/nm-osf3.h: New files + for OSF/1-3.x procfs support. + * configure.in (alpha-dec-osf): Use them when configuring + for OSF/1-3.x. + * configure: Updated. + * target.c: Include . + Fri Jul 14 16:16:56 1995 J.T. Conklin * Makefile.in, configure.in: Use one variable, frags, to hold diff --git a/gdb/configure b/gdb/configure index 34c20b035a3..eeca44b1fc7 100755 --- a/gdb/configure +++ b/gdb/configure @@ -1546,7 +1546,8 @@ case "${host}" in a29k-*-*) gdb_host=ultra3 ;; alpha-*-osf1*) gdb_host=alpha-osf1 ;; -alpha-*-osf[23456789]*) gdb_host=alpha-osf2 ;; +alpha-*-osf2*) gdb_host=alpha-osf2 ;; +alpha-*-osf[3456789]*) gdb_host=alpha-osf3 ;; arm-*-*) gdb_host=arm ;; diff --git a/gdb/configure.in b/gdb/configure.in index 852c2589365..f4f1b2c734b 100644 --- a/gdb/configure.in +++ b/gdb/configure.in @@ -92,7 +92,8 @@ case "${host}" in a29k-*-*) gdb_host=ultra3 ;; alpha-*-osf1*) gdb_host=alpha-osf1 ;; -alpha-*-osf[23456789]*) gdb_host=alpha-osf2 ;; +alpha-*-osf2*) gdb_host=alpha-osf2 ;; +alpha-*-osf[3456789]*) gdb_host=alpha-osf3 ;; arm-*-*) gdb_host=arm ;; diff --git a/gdb/target.c b/gdb/target.c index 9368d58a918..838afb6b626 100644 --- a/gdb/target.c +++ b/gdb/target.c @@ -1,5 +1,5 @@ /* Select target systems and architectures at runtime for GDB. - Copyright 1990, 1992, 1993, 1994 Free Software Foundation, Inc. + Copyright 1990, 1992, 1993, 1994, 1995 Free Software Foundation, Inc. Contributed by Cygnus Support. This file is part of GDB. @@ -21,6 +21,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "defs.h" #include #include +#include #include "target.h" #include "gdbcmd.h" #include "symtab.h"