aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gas/ChangeLog5
-rwxr-xr-xgas/configure1
-rw-r--r--gas/configure.in1
3 files changed, 7 insertions, 0 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog
index 271e8c9..8340681 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,3 +1,8 @@
+2004-07-15 Nick Clifton <nickc@redhat.com>
+
+ * configure.in: Accept armbe as a big-endian arm configuration.
+ * configure: Regenerate.
+
2004-07-13 Thomas Nystrom <thn@saeab.se>
* config/tc-i386.c (T_SHIFTOP): New constant.
diff --git a/gas/configure b/gas/configure
index e8242be..08ffddd 100755
--- a/gas/configure
+++ b/gas/configure
@@ -4165,6 +4165,7 @@ for this_target in $target $canon_targets ; do
case ${cpu} in
am33_2.0) cpu_type=mn10300 endian=little ;;
alpha*) cpu_type=alpha ;;
+ arm*be|xscale*be|strongarm*be | \
arm*b|xscale*b|strongarm*b) cpu_type=arm endian=big ;;
arm*|xscale*|strongarm*) cpu_type=arm endian=little ;;
c4x*) cpu_type=tic4x ;;
diff --git a/gas/configure.in b/gas/configure.in
index c80f3e3..d8d3e91 100644
--- a/gas/configure.in
+++ b/gas/configure.in
@@ -124,6 +124,7 @@ changequote([,])dnl
case ${cpu} in
am33_2.0) cpu_type=mn10300 endian=little ;;
alpha*) cpu_type=alpha ;;
+ arm*be|xscale*be|strongarm*be | \
arm*b|xscale*b|strongarm*b) cpu_type=arm endian=big ;;
arm*|xscale*|strongarm*) cpu_type=arm endian=little ;;
c4x*) cpu_type=tic4x ;;