This is the mail archive of the
libc-ports@sources.redhat.com
mailing list for the libc-ports project.
[PATCH 03/26] arm: Handle armv6 in preconfigure
- From: Richard Henderson <rth at twiddle dot net>
- To: libc-ports at sourceware dot org
- Cc: Joseph Myers <joseph at codesourcery dot com>
- Date: Tue, 26 Feb 2013 19:16:03 -0800
- Subject: [PATCH 03/26] arm: Handle armv6 in preconfigure
- References: <1361934986-17018-1-git-send-email-rth@twiddle.net>
---
* sysdeps/arm/preconfigure: Handle __ARM_ARCH_6__.
---
ports/sysdeps/arm/preconfigure | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/ports/sysdeps/arm/preconfigure b/ports/sysdeps/arm/preconfigure
index b0c0540..d19e838 100644
--- a/ports/sysdeps/arm/preconfigure
+++ b/ports/sysdeps/arm/preconfigure
@@ -28,7 +28,10 @@ arm*)
machine=armv6t2
echo "Found compiler is configured for $machine"
;;
-
+ x__ARM_ARCH_6__)
+ machine=armv6
+ echo "Found compiler is configured for $machine"
+ ;;
*)
machine=arm
echo 2>&1 "arm/preconfigure: Did not find ARM architecture type; using default"
--
1.8.1.2