diff options
author | Mark Kettenis <kettenis@gnu.org> | 2004-04-30 23:28:52 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2004-04-30 23:28:52 +0000 |
commit | 8f2d3ea0006e69b704208e27f31171c135a6e473 (patch) | |
tree | deddc5745c7b13b7654fb8987bb86362dbbaf8b1 /gdb/config | |
parent | c40f49a4cd5125955faee6a98c692e40d12793bb (diff) | |
download | gdb-8f2d3ea0006e69b704208e27f31171c135a6e473.zip gdb-8f2d3ea0006e69b704208e27f31171c135a6e473.tar.gz gdb-8f2d3ea0006e69b704208e27f31171c135a6e473.tar.bz2 |
Add OpenBSD/m68k support.
* NEWS (New native configurations): Mention OpenBSD/m68k.
* m68kbsd-tdep.c: New file.
* m68kbsd-nat.c: New file.
* Makefile.in (ALLDEPFILES): Add m68kbsd-nat.c and m68kbsd-tdep.c.
(m68kbsd-nat.o, m68kbsd-tdep.o): New dependencies.
* configure.host: Add m68k-*-openbsd.
* configure.tgt: Add m68k-*-openbsd.
* config/m68k/tm-obsd.h: New file.
* config/m68k/obsd.mt: New file.
* config/m68k/obsd.mh: New file.
* config/djgpp/fnchange.lst: Add entries for m68kbsd-nat.c and
m68kbsd-tdep.c.
Diffstat (limited to 'gdb/config')
-rw-r--r-- | gdb/config/djgpp/fnchange.lst | 2 | ||||
-rw-r--r-- | gdb/config/m68k/obsd.mh | 4 | ||||
-rw-r--r-- | gdb/config/m68k/obsd.mt | 3 | ||||
-rw-r--r-- | gdb/config/m68k/tm-obsd.h | 27 |
4 files changed, 36 insertions, 0 deletions
diff --git a/gdb/config/djgpp/fnchange.lst b/gdb/config/djgpp/fnchange.lst index 4950a63..6ab5c7e 100644 --- a/gdb/config/djgpp/fnchange.lst +++ b/gdb/config/djgpp/fnchange.lst @@ -141,6 +141,8 @@ @V@/gdb/m2-exp.tab.c @V@/gdb/m2-exp_tab.c @V@/gdb/m68klinux-nat.c @V@/gdb/m68kl-nat.c @V@/gdb/m68klinux-tdep.c @V@/gdb/m68kl-tdep.c +@V@/gdb/m68kbsd-nat.c @V@/gdb/m68bsd-nat.c +@V@/gdb/m68kbsd-tdep.c @V@/gdb/m68bsd-tdep.c @V@/gdb/m68knbsd-nat.c @V@/gdb/m6nbsd-nat.c @V@/gdb/m68knbsd-tdep.c @V@/gdb/m6nbsd-tdep.c @V@/gdb/mips-linux-nat.c @V@/gdb/mipslnxnat.c diff --git a/gdb/config/m68k/obsd.mh b/gdb/config/m68k/obsd.mh new file mode 100644 index 0000000..e188538 --- /dev/null +++ b/gdb/config/m68k/obsd.mh @@ -0,0 +1,4 @@ +# Host: OpenBSD/m68k +NATDEPFILES= m68kbsd-nat.o fork-child.o infptrace.o inftarg.o \ + solib.o solib-sunos.o +NAT_FILE= nm-nbsdaout.h diff --git a/gdb/config/m68k/obsd.mt b/gdb/config/m68k/obsd.mt new file mode 100644 index 0000000..7021c7f --- /dev/null +++ b/gdb/config/m68k/obsd.mt @@ -0,0 +1,3 @@ +# Target: OpenBSD/m68k +TDEPFILES= m68k-tdep.o m68kbsd-tdep.o corelow.o solib.o solib-svr4.o +TM_FILE= tm-obsd.h diff --git a/gdb/config/m68k/tm-obsd.h b/gdb/config/m68k/tm-obsd.h new file mode 100644 index 0000000..993b49e --- /dev/null +++ b/gdb/config/m68k/tm-obsd.h @@ -0,0 +1,27 @@ +/* Target-dependent definitions for OpenBSD/m68k. + + Copyright 2004 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., 59 Temple Place - Suite 330, + Boston, MA 02111-1307, USA. */ + +#ifndef TM_OBSD_H +#define TM_OBSD_H + +#include "solib.h" + +#endif /* tm-obsd.h */ |