aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Earnshaw <rearnsha@arm.com>2002-09-28 12:19:19 +0000
committerRichard Earnshaw <rearnsha@gcc.gnu.org>2002-09-28 12:19:19 +0000
commit5831424ed72881751a20ab8948b1efc09dab241b (patch)
tree826572258a26a78b9a089ed83916ae8f84579abc
parent841b836041756c81bfc945c602e978f3ba52c8e9 (diff)
downloadgcc-5831424ed72881751a20ab8948b1efc09dab241b.zip
gcc-5831424ed72881751a20ab8948b1efc09dab241b.tar.gz
gcc-5831424ed72881751a20ab8948b1efc09dab241b.tar.bz2
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
-rw-r--r--ChangeLog7
-rw-r--r--configure.in18
2 files changed, 13 insertions, 12 deletions
diff --git a/ChangeLog b/ChangeLog
index 492edef..5043bc1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
diff --git a/configure.in b/configure.in
index 1a34976..3041dd4 100644
--- a/configure.in
+++ b/configure.in
@@ -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}"
;;