config/arch/arm.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Tue Jan 20 20:37:43 2009 +0000 (2009-01-20)
changeset 1149 df32ef8825f9
parent 898 fe3eda71a9d0
child 1345 27fec561af53
permissions -rw-r--r--
On 20090115.0012+0100, "Andy Johnson" <ajohnson@aecno.com> wrote:
... I added a step after
"debug" called "finish", and moved the code in crosstool.sh
after the loop that processes the steps from crosstool.sh
into a do_finish function in functions. Thus, it is now
possible to restart after the "debug" step to re-do the
final few things (clean and compress).

/trunk/scripts/crosstool-NG.sh | 38 0 38 0 --------------------------------------
/trunk/scripts/functions | 42 42 0 0 ++++++++++++++++++++++++++++++++++++++++++
/trunk/steps.mk | 3 2 1 0 ++-
3 files changed, 44 insertions(+), 39 deletions(-)
yann@628
     1
# ARM specific configuration file
yann@628
     2
yann@628
     3
config ARCH_arm
yann@628
     4
    select ARCH_SUPPORTS_BOTH_ENDIAN
yann@628
     5
    select ARCH_DEFAULT_LE
yann@631
     6
    select ARCH_SUPPORT_ARCH
yann@631
     7
    select ARCH_SUPPORT_CPU
yann@631
     8
    select ARCH_SUPPORT_TUNE
yann@631
     9
    select ARCH_SUPPORT_FPU
yann@630
    10
    help
yann@630
    11
      The ARM architecture, as defined by:
yann@630
    12
        http://www.arm.com/
yann@385
    13
yann@385
    14
config ARCH_ARM_EABI
yann@385
    15
    bool
yann@823
    16
    prompt "Use EABI"
yann@385
    17
    default n
yann@385
    18
    help
yann@385
    19
      Set up the toolchain so that it generates EABI-compliant binaries.
yann@503
    20
yann@820
    21
config ARCH_ARM_ABI_OK
yann@820
    22
    bool
yann@820
    23
    default y
yann@820
    24
    depends on ! ARCH_ARM_EABI
yann@820
    25
    select ARCH_SUPPORT_ABI
yann@820
    26