aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPedro Alves <palves@redhat.com>2007-12-30 22:13:55 +0000
committerPedro Alves <palves@redhat.com>2007-12-30 22:13:55 +0000
commitfd39ac051a1324c369c245761a8ebfc01fae6ad9 (patch)
tree05be76ac647dee077a7855022b9f377e87965255
parent5a018c1a5f2903bbd760841c537b6193f500d3e4 (diff)
downloadfsf-binutils-gdb-fd39ac051a1324c369c245761a8ebfc01fae6ad9.zip
fsf-binutils-gdb-fd39ac051a1324c369c245761a8ebfc01fae6ad9.tar.gz
fsf-binutils-gdb-fd39ac051a1324c369c245761a8ebfc01fae6ad9.tar.bz2
* configure.tgt (*-*-mingw32ce*): Set gdb_osabi to
GDB_OSABI_WINCE. (*-*-mingw* | *-*-cygwin*): Set gdb_osabi to GDB_OSABI_CYGWIN.
-rw-r--r--gdb/ChangeLog6
-rw-r--r--gdb/configure.tgt3
2 files changed, 9 insertions, 0 deletions
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 <pedro_alves@portugalmail.pt>
+
+ * configure.tgt (*-*-mingw32ce*): Set gdb_osabi to
+ GDB_OSABI_WINCE.
+ (*-*-mingw* | *-*-cygwin*): Set gdb_osabi to GDB_OSABI_CYGWIN.
+
2007-12-29 Nick Hudson <nick.hudson@dsl.pipex.com>
* 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