scripts/build/arch/avr32.sh
author "Yann E. MORIN" <yann.morin.1998@free.fr>
Sun May 11 23:43:52 2014 +0200 (2014-05-11)
changeset 3320 78af1c99bc6d
parent 1371 802c132f1f71
permissions -rw-r--r--
scripts/functions: add target_endian_le and target_endian_be

We currently define target_endian_el and target_endian_eb to be the
tuple extension depending on endianness, defined to be respectively
'el' or 'eb' according to the endianness.

Some architecture do not use 'el' or 'eb', but use 'le' or 'be'.

Provide that as well, as two new variables: target_endian_le and
target_endian_be.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Cody P Schafer <dev@codyps.com>
     1 # Compute AVR32-specific values
     2 
     3 CT_DoArchTupleValues() {
     4     # gcc ./configure flags
     5     CT_ARCH_WITH_ARCH=
     6     CT_ARCH_WITH_ABI=
     7     CT_ARCH_WITH_CPU=
     8     CT_ARCH_WITH_TUNE=
     9     CT_ARCH_WITH_FPU=
    10     CT_ARCH_WITH_FLOAT=
    11     CT_TARGET_SYS=none
    12 
    13 }