arch/arm/config.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Wed Oct 01 18:10:40 2008 +0000 (2008-10-01)
changeset 894 c444ce4b51b9
parent 820 d43c250051c7
permissions -rw-r--r--
Save the toolchain configuration to its own file, as an auto-extracting shell script:
- get rid of the 'extractconfig' action, it was cumbersome to use, and badly documented,
- introduce a skeleton for the config script,
- update auto-completion,
- document the config script.

/trunk/kconfig/kconfig.mk | 9 2 7 0 ++-------
/trunk/scripts/crosstool.sh | 6 5 1 0 +++++-
/trunk/docs/overview.txt | 21 9 12 0 +++++++++------------
/trunk/tools/toolchain-config.in | 8 8 0 0 ++++++++
/trunk/ct-ng.comp | 2 1 1 0 +-
5 files changed, 25 insertions(+), 21 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