or1k: GDB not supported for or1k*-*-rtems*
authorJoel Sherrill <joel.sherrill@oarcorp.com>
Mon, 21 Jul 2014 23:49:17 +0000 (18:49 -0500)
committerChristian Svensson <blue@cmd.nu>
Sun, 27 Jul 2014 16:43:52 +0000 (18:43 +0200)
* configure.ac (or1k*-*-rtems*): gdb not supported.  The ordering
of the stanzas results in this not being caught by or1k*-*-* later.
* configure. Regenerated.

Signed-off-by: Christian Svensson <blue@cmd.nu>
ChangeLog
configure
configure.ac

index 5c8fe15478f1e42c8515c13a822109cc3178684f..69cc17bad87c7098aa851e69497a94224aa7485a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2014-07-27  Joel Sherrill <joel.sherrill@oarcorp.com>
+
+       GDB not supported for or1k*-*-rtems*
+       * configure.ac (or1k*-*-rtems*): gdb not supported.  The ordering
+       of the stanzas results in this not being caught by or1k*-*-* later.
+       * configure. Regenerated.
+
 2014-07-25  Samuel Bronson  <naesten@gmail.com>
 
        * .gitattributes: New file for use with git-merge-changelog.
index ab3a5e56d38cd61292ebb34fe5f1993333cf31f3..26c9886e939eebdfa9056604ba881d8b83961a64 100755 (executable)
--- a/configure
+++ b/configure
@@ -3369,6 +3369,10 @@ case "${target}" in
     ;;
   *-*-rtems*)
     noconfigdirs="$noconfigdirs ${libgcj}"
+    # this is not caught below because this stanza matches earlier
+    case $target in
+      or1k*-*-*) noconfigdirs="$noconfigdirs gdb" ;;
+    esac
     ;;
   *-*-tpf*)
     noconfigdirs="$noconfigdirs ${libgcj}"
index e761e78f3327dee2c2fb29521eea34d9330b88ff..028cbdafe0ffa304aa9a133e67b7209f0dfec9e9 100644 (file)
@@ -931,6 +931,10 @@ case "${target}" in
     ;;
   *-*-rtems*)
     noconfigdirs="$noconfigdirs target-libgloss"
+    # this is not caught below because this stanza matches earlier
+    case $target in
+      or1k*-*-*) noconfigdirs="$noconfigdirs gdb" ;;
+    esac
     ;;
     # The tpf target doesn't support gdb yet.
   *-*-tpf*)
This page took 0.039747 seconds and 4 git commands to generate.