From: Joel Sherrill Date: Mon, 21 Jul 2014 23:49:17 +0000 (-0500) Subject: or1k: GDB not supported for or1k*-*-rtems* X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1f995db6ad2c9325a8db45b73fea29c8ab9200e1;p=binutils-gdb.git or1k: 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. Signed-off-by: Christian Svensson --- diff --git a/ChangeLog b/ChangeLog index 5c8fe15478f..69cc17bad87 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2014-07-27 Joel Sherrill + + 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 * .gitattributes: New file for use with git-merge-changelog. diff --git a/configure b/configure index ab3a5e56d38..26c9886e939 100755 --- 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}" diff --git a/configure.ac b/configure.ac index e761e78f332..028cbdafe0f 100644 --- a/configure.ac +++ b/configure.ac @@ -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*)