From 50ea3b751de4c94606bebc56a385324f130c33a8 Mon Sep 17 00:00:00 2001 From: "Yann E. MORIN\"" Date: Fri, 3 Oct 2008 12:30:58 +0000 Subject: Second shot at moving arch/ into config/arch/ . --- config/arch/arm/functions | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 config/arch/arm/functions (limited to 'config/arch/arm/functions') diff --git a/config/arch/arm/functions b/config/arch/arm/functions new file mode 100644 index 00000000..a1b8542c --- /dev/null +++ b/config/arch/arm/functions @@ -0,0 +1,17 @@ +# Compute ARM-specific values + +CT_DoArchValues() { + # The architecture part of the tuple: + CT_TARGET_ARCH="${CT_ARCH}${target_endian_eb}" + + # The system part of the tuple: + case "${CT_LIBC},${CT_ARCH_ARM_EABI}" in + *glibc,y) CT_TARGET_SYS=gnueabi;; + uClibc,y) CT_TARGET_SYS=uclibcgnueabi;; + none,y) CT_TARGET_SYS=eabi;; + esac + + # In case we're EABI, do *not* specify any ABI! + # which means, either we do not have an ABI specified, or we're not EABI. + CT_TestOrAbort "Internal error: CT_ARCH_ABI should not be set for EABI build." -z "${CT_ARCH_ABI}" -o -z "${CT_ARCH_ARM_EABI}" +} -- cgit v1.2.3