From: Pedro Alves Date: Sun, 30 Dec 2007 22:13:55 +0000 (+0000) Subject: * configure.tgt (*-*-mingw32ce*): Set gdb_osabi to X-Git-Tag: sid-snapshot-20080101~14 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fd39ac051a1324c369c245761a8ebfc01fae6ad9;p=platform%2Fupstream%2Fbinutils.git * configure.tgt (*-*-mingw32ce*): Set gdb_osabi to GDB_OSABI_WINCE. (*-*-mingw* | *-*-cygwin*): Set gdb_osabi to GDB_OSABI_CYGWIN. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 4b98da9..4815dd0 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +2007-12-30 Pedro Alves + + * configure.tgt (*-*-mingw32ce*): Set gdb_osabi to + GDB_OSABI_WINCE. + (*-*-mingw* | *-*-cygwin*): Set gdb_osabi to GDB_OSABI_CYGWIN. + 2007-12-29 Nick Hudson * i386nbsd-tdep.c: Include "trad-frame.h" and "tramp-frame.h" diff --git a/gdb/configure.tgt b/gdb/configure.tgt index 1448f19..c10d28a 100644 --- a/gdb/configure.tgt +++ b/gdb/configure.tgt @@ -530,4 +530,7 @@ m68*-*-openbsd* | m88*-*-openbsd* | vax-*-openbsd*) ;; *-*-solaris*) gdb_osabi=GDB_OSABI_SOLARIS ;; *-*-*-gnu*) ;; # prevent non-GNU kernels to match the Hurd rule below *-*-gnu*) gdb_osabi=GDB_OSABI_HURD ;; +*-*-mingw32ce*) gdb_osabi=GDB_OSABI_WINCE ;; +*-*-mingw* | *-*-cygwin*) + gdb_osabi=GDB_OSABI_CYGWIN ;; esac