From 9e947198d2edf8067f0a9a49be391126e554e51c Mon Sep 17 00:00:00 2001 From: "Yann E. MORIN\"" Date: Fri, 14 Sep 2007 21:31:00 +0000 Subject: Initial support for ARM EABI (courtesy Szilveszter Ordog ). diff --git a/arch/arm/config.in b/arch/arm/config.in index e69de29..cafb077 100644 --- a/arch/arm/config.in +++ b/arch/arm/config.in @@ -0,0 +1,8 @@ +comment "ARM specific options" + +config ARCH_ARM_EABI + bool + prompt "Use EABI" + default n + help + Set up the toolchain so that it generates EABI-compliant binaries. diff --git a/arch/arm/functions b/arch/arm/functions index ada2836..b59be4f 100644 --- a/arch/arm/functions +++ b/arch/arm/functions @@ -4,7 +4,13 @@ CT_DoArchValues() { # The architecture part of the tuple: CT_TARGET_ARCH="${CT_ARCH}${target_endian_eb}" - # The system part of the tuple default values is OK. + # The system part of the tuple: + case "${CT_LIBC},${CT_ARCH_ARM_EABI}" in + glibc,) CT_TARGET_SYS=gnu;; + glibc,y) CT_TARGET_SYS=gnueabi;; + uClibc,) CT_TARGET_SYS=uclibc;; + uClibc,y) CT_TARGET_SYS=uclibcgnueabi;; + esac - # The endianness option default value is OK. + # The endianness option default value is OK } -- cgit v0.10.2-6-g49f6