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 <blue@cmd.nu>
This commit is contained in:
Joel Sherrill 2014-07-21 18:49:17 -05:00 committed by Christian Svensson
parent 8a196b99a8
commit 1f995db6ad
3 changed files with 15 additions and 0 deletions

View file

@ -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.

4
configure vendored
View file

@ -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}"

View 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*)