config/arch/sh.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun Mar 22 23:04:57 2009 +0000 (2009-03-22)
branchnewlib
changeset 1361 7f00c31a3235
parent 903 9fb0f81b4416
child 1345 27fec561af53
permissions -rw-r--r--
Allow broader dependency in generated config files:
- recognise '^# depends on ' pattern in config files
- use that pattern to generate appropriate dependency rules
- convert users of the old pattern to the new one

/branches/newlib/config/libc/eglibc.in | 2 1 1 0 +-
/branches/newlib/config/config.mk | 20 8 12 0 ++++++++------------
/branches/newlib/config/arch/sh.in | 2 1 1 0 +-
/branches/newlib/config/arch/ia64.in | 2 1 1 0 +-
/branches/newlib/config/arch/powerpc64.in | 2 1 1 0 +-
5 files changed, 12 insertions(+), 16 deletions(-)
yann@413
     1
# Super-H specific configuration file
yann@1269
     2
# depends on EXPERIMENTAL
yann@413
     3
yann@628
     4
config ARCH_sh
yann@628
     5
    select ARCH_SUPPORTS_BOTH_ENDIAN
yann@628
     6
    select ARCH_DEFAULT_LE
yann@630
     7
    help
yann@630
     8
      The Super-H architecture, as defined by:
yann@630
     9
        http://www.renesas.com/fmwk.jsp?cnt=superh_family_landing.jsp&fp=/products/mpumcu/superh_family/
yann@413
    10
yann@413
    11
choice
yann@413
    12
    bool
yann@413
    13
    prompt "Variant"
yann@413
    14
yann@413
    15
config ARCH_SH_SH3
yann@413
    16
    bool
yann@413
    17
    prompt "sh3"
yann@413
    18
yann@413
    19
config ARCH_SH_SH4
yann@413
    20
    bool
yann@413
    21
    prompt "sh4"
yann@413
    22
yann@413
    23
config ARCH_SH_SH4A
yann@413
    24
    bool
yann@413
    25
    prompt "sh4a"
yann@413
    26
yann@413
    27
endchoice
yann@413
    28
yann@413
    29
config ARCH_SH_VARIANT
yann@413
    30
    string
yann@413
    31
    default "sh3"   if ARCH_SH_SH3
yann@413
    32
    default "sh4"   if ARCH_SH_SH4
yann@413
    33
    default "sh4a"  if ARCH_SH_SH4A