mirror of git://sourceware.org/git/glibc.git
arm: Handle armv6 in preconfigure
This commit is contained in:
parent
60812ba09d
commit
8a0018d62f
|
@ -2,6 +2,8 @@
|
||||||
|
|
||||||
* sysdeps/arm/preconfigure: Adjust scan for __ARM_ARCH_* defines.
|
* sysdeps/arm/preconfigure: Adjust scan for __ARM_ARCH_* defines.
|
||||||
|
|
||||||
|
* sysdeps/arm/preconfigure: Handle __ARM_ARCH_6*__.
|
||||||
|
|
||||||
2013-02-27 Roland McGrath <roland@hack.frob.com>
|
2013-02-27 Roland McGrath <roland@hack.frob.com>
|
||||||
|
|
||||||
* sysdeps/arm/sysdep.h (CFI_SECTIONS): New macro.
|
* sysdeps/arm/sysdep.h (CFI_SECTIONS): New macro.
|
||||||
|
|
|
@ -28,7 +28,10 @@ arm*)
|
||||||
machine=armv6t2
|
machine=armv6t2
|
||||||
echo "Found compiler is configured for $machine"
|
echo "Found compiler is configured for $machine"
|
||||||
;;
|
;;
|
||||||
|
x__ARM_ARCH_6*__)
|
||||||
|
machine=armv6
|
||||||
|
echo "Found compiler is configured for $machine"
|
||||||
|
;;
|
||||||
*)
|
*)
|
||||||
machine=arm
|
machine=arm
|
||||||
echo 2>&1 "arm/preconfigure: Did not find ARM architecture type; using default"
|
echo 2>&1 "arm/preconfigure: Did not find ARM architecture type; using default"
|
||||||
|
|
Loading…
Reference in New Issue