Add OpenBSD/sh support.

* NEWS (New targets): Mention OpenBSD/sh.
* configure.tgt: Add sh*-*-openbsd*.
* shnbsd-tdep.c (_initialize_shnbsd_tdep): Register handler for
GDB_OSABI_OPENBSD_ELF.
* config/sh/obsd.mt: New file.
This commit is contained in:
Mark Kettenis 2006-12-15 23:45:04 +00:00
parent 1e17aef808
commit 54fe917236
5 changed files with 18 additions and 2 deletions

View File

@ -1,5 +1,12 @@
2006-12-16 Mark Kettenis <kettenis@gnu.org>
Add OpenBSD/sh support.
* NEWS (New targets): Mention OpenBSD/sh.
* configure.tgt: Add sh*-*-openbsd*.
* shnbsd-tdep.c (_initialize_shnbsd_tdep): Register handler for
GDB_OSABI_OPENBSD_ELF.
* config/sh/obsd.mt: New file.
* ppcnbsd-tdep.c: Fix typo in comment.
2006-12-15 Mark Kettenis <kettenis@gnu.org>

View File

@ -30,6 +30,7 @@ show breakpoint auto-hw
* New targets
OpenBSD/sh sh*-*-openbsd*
MIPS64 GNU/Linux (gdbserver) mips64-linux-gnu
* New remote packets

3
gdb/config/sh/obsd.mt Normal file
View File

@ -0,0 +1,3 @@
# Target: OpenBSD/sh
TDEPFILES= sh-tdep.o sh64-tdep.o shnbsd-tdep.o nbsd-tdep.o \
corelow.o solib.o solib-svr4.o

View File

@ -189,6 +189,7 @@ sh-*-linux*) gdb_target=linux
sh*-*-netbsdelf* | sh*-*-knetbsd*-gnu)
gdb_target=nbsd ;;
sh-*-nto*) gdb_target=nto ;;
sh*-*-openbsd*) gdb_target=obsd ;;
sh64-*-elf*) gdb_target=sh64 ;;
sh*) gdb_target=embed ;;

View File

@ -1,5 +1,7 @@
/* Target-dependent code for SuperH running NetBSD, for GDB.
Copyright (C) 2002, 2003 Free Software Foundation, Inc.
/* Target-dependent code for NetBSD/sh.
Copyright (C) 2002, 2003, 2006 Free Software Foundation, Inc.
Contributed by Wasabi Systems, Inc.
This file is part of GDB.
@ -184,4 +186,6 @@ _initialize_shnbsd_tdep (void)
gdbarch_register_osabi (bfd_arch_sh, 0, GDB_OSABI_NETBSD_ELF,
shnbsd_init_abi);
gdbarch_register_osabi (bfd_arch_sh, 0, GDB_OSABI_OPENBSD_ELF,
shnbsd_init_abi);
}