diff options
author | Felix Fietkau <nbd@openwrt.org> | 2012-05-15 13:42:28 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2012-05-15 13:42:28 +0000 |
commit | d98c2d542cfae2572f8f97965ebe1bfb2e110bd6 (patch) | |
tree | ad4315c201536a47c7c924b841fcbe68a09dbca7 /toolchain/uClibc/patches-0.9.32/950-detect_bx_availibility.patch | |
parent | 67675fd48d3d0475a9440ed9612c4770c6e4966d (diff) | |
download | upstream-d98c2d542cfae2572f8f97965ebe1bfb2e110bd6.tar.gz upstream-d98c2d542cfae2572f8f97965ebe1bfb2e110bd6.tar.bz2 upstream-d98c2d542cfae2572f8f97965ebe1bfb2e110bd6.zip |
uClibc: remove 0.9.32, it is no longer necessary
SVN-Revision: 31739
Diffstat (limited to 'toolchain/uClibc/patches-0.9.32/950-detect_bx_availibility.patch')
-rw-r--r-- | toolchain/uClibc/patches-0.9.32/950-detect_bx_availibility.patch | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/toolchain/uClibc/patches-0.9.32/950-detect_bx_availibility.patch b/toolchain/uClibc/patches-0.9.32/950-detect_bx_availibility.patch deleted file mode 100644 index a0277cb086..0000000000 --- a/toolchain/uClibc/patches-0.9.32/950-detect_bx_availibility.patch +++ /dev/null @@ -1,42 +0,0 @@ -The "use BX" option is now a suggestion that BX be used if available. -Use a macro to detect if BX is available at build time. If so, and -the user requested it be used, then use it. Otherwise, error out. - -Macro courtesy Khem RAJ: - http://lists.uclibc.org/pipermail/uclibc/2009-April/042301.html - -Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> -Cc: Khem Raj <raj.khem@gmail.com> -Cc: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> -Cc: Carmelo AMOROSO <carmelo.amoroso@st.com> ---- - extra/Configs/Config.arm | 4 +++- - libc/sysdeps/linux/arm/bits/arm_asm.h | 9 ++++++++- - 2 files changed, 11 insertions(+), 2 deletions(-) - ---- a/extra/Configs/Config.arm -+++ b/extra/Configs/Config.arm -@@ -33,4 +33,6 @@ config COMPILE_IN_THUMB_MODE - config USE_BX - bool "Use BX in function return" - help -- Use BX instruction for THUMB aware architectures. -+ Say 'y' to use BX to return from functions on your thumb-aware -+ processor. Say 'y' if you need to use interworking. Say 'n' if not. -+ It is safe to say 'y' even if you're not doing interworking. ---- a/libc/sysdeps/linux/arm/bits/arm_asm.h -+++ b/libc/sysdeps/linux/arm/bits/arm_asm.h -@@ -24,5 +24,12 @@ - #define THUMB1_ONLY 1 - #endif - --#endif /* _ARM_ASM_H */ -+#if defined(__USE_BX__) -+# if ( defined (__ARM_ARCH_2__) || defined (__ARM_ARCH_3__) \ -+ || defined (__ARM_ARCH_3M__) || defined (__ARM_ARCH_4__) \ -+ ) -+# error Use of BX was requested, but is not available on the target processor. -+# endif /* ARCH level */ -+#endif /* __USE_BX__ */ - -+#endif /* _ARM_ASM_H */ |