config/arch/alpha.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun Aug 30 00:57:40 2009 +0200 (2009-08-30)
changeset 1495 2542421e3321
parent 903 9fb0f81b4416
child 1716 6bbf206a5b57
permissions -rw-r--r--
tools wrapper: introduce the silent WRAPPER_NEEDED config option

Add the WRAPPER_NEEDED silent config option, that can be selected by
components that require it (companion libs so far).
Rely on this config option when deciding to install the wrapper,
instead of checking GMP/MPFR or PPL/CLoog/MPC.
     1 # Alpha specific configuration file
     2 
     3 config ARCH_alpha
     4     select ARCH_USE_MMU
     5     select ARCH_SUPPORT_CPU
     6     select ARCH_SUPPORT_TUNE
     7     help
     8       The Alpha architecture.
     9 
    10 choice
    11     bool
    12     prompt "Variant"
    13 
    14 config ARCH_ALPHA_EV4
    15     bool
    16     prompt "EV4"
    17 
    18 config ARCH_ALPHA_EV45
    19     bool
    20     prompt "EV45"
    21 
    22 config ARCH_ALPHA_EV5
    23     bool
    24     prompt "EV5"
    25 
    26 config ARCH_ALPHA_EV56
    27     bool
    28     prompt "EV56"
    29 
    30 config ARCH_ALPHA_EV6
    31     bool
    32     prompt "EV6"
    33 
    34 config ARCH_ALPHA_EV67
    35     bool
    36     prompt "EV67"
    37 
    38 endchoice
    39 
    40 config ARCH_ALPHA_VARIANT
    41     string
    42     default "ev4"   if ARCH_ALPHA_EV4
    43     default "ev45"  if ARCH_ALPHA_EV45
    44     default "ev5"   if ARCH_ALPHA_EV5
    45     default "ev56"  if ARCH_ALPHA_EV56
    46     default "ev6"   if ARCH_ALPHA_EV6
    47     default "ev67"  if ARCH_ALPHA_EV67
    48 
    49 config ARCH_CPU
    50     default "ev4"   if ARCH_ALPHA_EV4
    51     default "ev45"  if ARCH_ALPHA_EV45
    52     default "ev5"   if ARCH_ALPHA_EV5
    53     default "ev56"  if ARCH_ALPHA_EV56
    54     default "ev6"   if ARCH_ALPHA_EV6
    55     default "ev67"  if ARCH_ALPHA_EV67
    56 
    57 config ARCH_TUNE
    58     default "ev4"   if ARCH_ALPHA_EV4
    59     default "ev45"  if ARCH_ALPHA_EV45
    60     default "ev5"   if ARCH_ALPHA_EV5
    61     default "ev56"  if ARCH_ALPHA_EV56
    62     default "ev6"   if ARCH_ALPHA_EV6
    63     default "ev67"  if ARCH_ALPHA_EV67