configure.in (arm-*-coff, [...]): Use a single entry to handle all these.

* configure.in (arm-*-coff, strongarm-*-coff, xscale-*-coff): Use a
single entry to handle all these.
(arm-*-elf, strongarm-*-elf, xscale-*-elf): Likewise.  Also enable
libjava on arm-*-elf.

From-SVN: r57612
This commit is contained in:
Richard Earnshaw 2002-09-28 12:19:19 +00:00 committed by Richard Earnshaw
parent 841b836041
commit 5831424ed7
2 changed files with 13 additions and 12 deletions

View File

@ -1,3 +1,10 @@
2002-09-28 Richard Earnshaw <rearnsha@arm.com>
* configure.in (arm-*-coff, strongarm-*-coff, xscale-*-coff): Use a
single entry to handle all these.
(arm-*-elf, strongarm-*-elf, xscale-*-elf): Likewise. Also enable
libjava on arm-*-elf.
2002-09-27 Geoffrey Keating <geoffk@apple.com>
* configure.in (powerpc-*-darwin*): Don't configure BFD, TK, or the

View File

@ -331,6 +331,12 @@ case "${target}" in
arc-*-*)
noconfigdirs="$noconfigdirs target-libgloss ${libgcj}"
;;
arm-*-coff | strongarm-*-coff | xscale-*-coff)
noconfigdirs="$noconfigdirs ${libgcj}"
;;
arm-*-elf* | strongarm-*-elf* | xscale-*-elf*)
noconfigdirs="$noconfigdirs target-libffi target-qthreads"
;;
arm-*-pe*)
noconfigdirs="$noconfigdirs target-libgloss ${libgcj}"
;;
@ -346,18 +352,6 @@ case "${target}" in
thumb-*-oabi)
noconfigdirs="$noconfigdirs target-libgloss ${libgcj}"
;;
strongarm-*-elf)
noconfigdirs="$noconfigdirs ${libgcj}"
;;
strongarm-*-coff)
noconfigdirs="$noconfigdirs ${libgcj}"
;;
xscale-*-elf)
noconfigdirs="$noconfigdirs target-libffi target-qthreads"
;;
xscale-*-coff)
noconfigdirs="$noconfigdirs ${libgcj}"
;;
thumb-*-pe)
noconfigdirs="$noconfigdirs target-libgloss ${libgcj}"
;;