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:
parent
a9df6b2252
commit
4e18c05334
2 changed files with 6 additions and 1 deletions
|
@ -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>
|
2011-01-14 Joel Brobecker <brobecker@adacore.com>
|
||||||
|
|
||||||
* ia64-hpux-nat.c (ia64_hpux_fetch_register): Remove trailing
|
* ia64-hpux-nat.c (ia64_hpux_fetch_register): Remove trailing
|
||||||
|
|
|
@ -635,7 +635,8 @@ esac
|
||||||
case "${targ}" in
|
case "${targ}" in
|
||||||
*-*-freebsd* | *-*-kfreebsd*-gnu)
|
*-*-freebsd* | *-*-kfreebsd*-gnu)
|
||||||
gdb_osabi=GDB_OSABI_FREEBSD_ELF ;;
|
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 ;;
|
*-*-nto*) gdb_osabi=GDB_OSABI_QNXNTO ;;
|
||||||
m68*-*-openbsd* | m88*-*-openbsd* | vax-*-openbsd*) ;;
|
m68*-*-openbsd* | m88*-*-openbsd* | vax-*-openbsd*) ;;
|
||||||
*-*-openbsd*) gdb_osabi=GDB_OSABI_OPENBSD_ELF ;;
|
*-*-openbsd*) gdb_osabi=GDB_OSABI_OPENBSD_ELF ;;
|
||||||
|
|
Loading…
Add table
Reference in a new issue