summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChung-Ju Wu <jasonwucj@gmail.com>2014-09-06 03:54:47 +0800
committerKuan-Lin Chen <kuanlinchentw@gmail.com>2014-09-10 09:34:33 +0800
commitb25b5cef71fc5628fce0908125d6a3a732c22cde (patch)
tree56ea6c2cd30d9703c4ca7478ed014f89f5156867
parent9a560ca009644f29654bee0f060f7b1e80336cee (diff)
downloadbinutils-gdb-b25b5cef71fc5628fce0908125d6a3a732c22cde.tar.gz
Disable gdb for nds32*-*-* until it is supported.
-rw-r--r--ChangeLog4
-rwxr-xr-xconfigure3
-rw-r--r--configure.ac3
3 files changed, 10 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index e6685424140..47843e122f0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2014-09-06 Kuan-Lin Chen <kuanlinchentw@gmail.com>
+ * configure: Disable gdb for nds32*-*-* until supported.
+ * configure.ac: Disable gdb for nds32*-*-* until supported.
+
2014-09-05 Joel Brobecker <brobecker@adacore.com>
* configure: Regenerate.
diff --git a/configure b/configure
index 9fc1c88c075..dfea3bd7459 100755
--- a/configure
+++ b/configure
@@ -3805,6 +3805,9 @@ case "${target}" in
mips*-*-*)
noconfigdirs="$noconfigdirs gprof"
;;
+ nds32*-*-*)
+ noconfigdirs="$noconfigdirs gdb"
+ ;;
or1k*-*-*)
noconfigdirs="$noconfigdirs gdb"
;;
diff --git a/configure.ac b/configure.ac
index 028cbdafe0f..dada0902d13 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1133,6 +1133,9 @@ case "${target}" in
mips*-*-*)
noconfigdirs="$noconfigdirs gprof"
;;
+ nds32*-*-*)
+ noconfigdirs="$noconfigdirs gdb"
+ ;;
or1k*-*-*)
noconfigdirs="$noconfigdirs gdb"
;;