From 75365589180b15eea551399299262f81c574fa57 Mon Sep 17 00:00:00 2001 From: "K. Richard Pixley" Date: Thu, 15 Oct 1992 06:47:31 +0000 Subject: [PATCH] sony news native support --- gdb/.Sanitize | 1 + gdb/ChangeLog | 9 +++++++++ gdb/Makefile.in | 2 +- gdb/config/news.mh | 4 +++- gdb/config/news.mt | 2 +- gdb/nm-news.h | 20 ++++++++++++++++++++ 6 files changed, 35 insertions(+), 3 deletions(-) create mode 100644 gdb/nm-news.h diff --git a/gdb/.Sanitize b/gdb/.Sanitize index 76f86b68fb4..60d90dd7f0a 100644 --- a/gdb/.Sanitize +++ b/gdb/.Sanitize @@ -145,6 +145,7 @@ nindy-tdep.c nm-irix3.h nm-irix4.h nm-mips.h +nm-news.h nm-rs6000.h nm-sun2.h nm-sun3.h diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 511a67e2780..1cdcdd467da 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,14 @@ Wed Oct 14 18:56:28 1992 K. Richard Pixley (rich@sendai.cygnus.com) + Sony News native support. + + * Makefile.in (HFILES): added nm-news.h. + * nm-news.h: new file. + * config/news.mh (XDEPFILES): removed infptrace.o inftarg.o + fork-child.o coredep.o to NATDEPFILES. + (NAT_FILE, NATDEPFILES): new macros for native support. + * config/news.mt (TDEPFILES): removed exec.o. + * remote-vx.c: remove redundant include of sys/time.h. * infrun.c: include ctype.h. Otherwise some machines result in diff --git a/gdb/Makefile.in b/gdb/Makefile.in index e3e1f4b8258..19d8674a6c9 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -254,7 +254,7 @@ HFILES= breakpoint.h buildsym.h call-cmds.h command.h defs.h \ tm-68k.h tm-hppa.h tm-i960.h tm-sparc.h tm-sunos.h tm-sysv4.h \ xm-m68k.h xm-sparc.h xm-sysv4.h xm-vax.h \ nm-irix3.h nm-irix4.h nm-mips.h nm-rs6000.h nm-sun2.h nm-sun3.h \ - nm-sun4os4.h nm-trash.h + nm-sun4os4.h nm-trash.h nm-news.h REMOTE_EXAMPLES = m68k-stub.c i386-stub.c sparc-stub.c rem-multi.shar diff --git a/gdb/config/news.mh b/gdb/config/news.mh index d9c3ee23e01..2042e1a5f1b 100644 --- a/gdb/config/news.mh +++ b/gdb/config/news.mh @@ -1,3 +1,5 @@ # Host: Sony news series 700/800/900 (68020) running NewsOS version 3. -XDEPFILES= infptrace.o inftarg.o fork-child.o coredep.o news-xdep.o +XDEPFILES= news-xdep.o XM_FILE= xm-news.h +NAT_FILE= nm-news.h +NATDEPFILES= exec.o inftarg.o fork-child.o coredep.o infptrace.o diff --git a/gdb/config/news.mt b/gdb/config/news.mt index f00779a5b6f..5c595ea6b49 100644 --- a/gdb/config/news.mt +++ b/gdb/config/news.mt @@ -1,3 +1,3 @@ # Target: Sony news series 700/800/900 (68020) running NewsOS version 3. -TDEPFILES= m68k-pinsn.o exec.o m68k-tdep.o +TDEPFILES= m68k-pinsn.o m68k-tdep.o TM_FILE= tm-news.h diff --git a/gdb/nm-news.h b/gdb/nm-news.h new file mode 100644 index 00000000000..881b7349fa5 --- /dev/null +++ b/gdb/nm-news.h @@ -0,0 +1,20 @@ +/* Parameters for execution on a Sony/NEWS, for GDB, the GNU debugger. + Copyright 1987, 1989, 1992 Free Software Foundation, Inc. + +This file is part of GDB. + +This program 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 of the License, or +(at your option) any later version. + +This program 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 this program; if not, write to the Free Software +Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ + +/* This file intentionally empty. */ -- 2.30.2