gdb: extend Linux osabi match

The current osabi default matching misses all *-uclinux tuples.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
This commit is contained in:
Mike Frysinger 2011-01-14 18:16:34 +00:00
parent a9df6b2252
commit 4e18c05334
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2011-01-14 Mike Frysinger <vapier@gentoo.org>
* configure.tgt (*-*-uclinux*): Match more Linux os targets
2011-01-14 Joel Brobecker <brobecker@adacore.com>
* ia64-hpux-nat.c (ia64_hpux_fetch_register): Remove trailing

View File

@ -635,7 +635,8 @@ esac
case "${targ}" in
*-*-freebsd* | *-*-kfreebsd*-gnu)
gdb_osabi=GDB_OSABI_FREEBSD_ELF ;;
*-*-linux*) gdb_osabi=GDB_OSABI_LINUX ;;
*-*-linux* | *-*-uclinux*)
gdb_osabi=GDB_OSABI_LINUX ;;
*-*-nto*) gdb_osabi=GDB_OSABI_QNXNTO ;;
m68*-*-openbsd* | m88*-*-openbsd* | vax-*-openbsd*) ;;
*-*-openbsd*) gdb_osabi=GDB_OSABI_OPENBSD_ELF ;;