scripts/build/arch/avr32.sh
author "Yann E. MORIN" <yann.morin.1998@free.fr>
Thu Jan 10 00:27:13 2013 +0100 (2013-01-10)
changeset 3159 fb71cad4b085
child 3169 9d0b37f08a10
permissions -rw-r--r--
arch/arm: OABI is no more, switch to only EABI

Well, leave the prompt as an OBSOLETE thing, scheduled to
be removed soon.

As an indication OABI lives its last days, gcc-4.8 will no
longer recognise non-EABI targets.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
mgl@1371
     1
# Compute AVR32-specific values
mgl@1371
     2
mgl@1371
     3
CT_DoArchTupleValues() {
mgl@1371
     4
    # The architecture part of the tuple:
mgl@1371
     5
    CT_TARGET_ARCH="${CT_ARCH}"
mgl@1371
     6
mgl@1371
     7
    # gcc ./configure flags
mgl@1371
     8
    CT_ARCH_WITH_ARCH=
mgl@1371
     9
    CT_ARCH_WITH_ABI=
mgl@1371
    10
    CT_ARCH_WITH_CPU=
mgl@1371
    11
    CT_ARCH_WITH_TUNE=
mgl@1371
    12
    CT_ARCH_WITH_FPU=
mgl@1371
    13
    CT_ARCH_WITH_FLOAT=
mgl@1371
    14
    CT_TARGET_SYS=none
mgl@1371
    15
mgl@1371
    16
}