arch/alpha/config.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Wed Jun 25 21:56:36 2008 +0000 (2008-06-25)
changeset 622 259d3b95bfad
child 628 87802cb25a0f
permissions -rw-r--r--
Don't force building target GMP and MPFR when a native gdb is built. Rather,
add a config knob to configure the native gdb to use or not to use GMP and
MPFR; _this_config_knob_ will force building the target GMP and MPFR only if
turned on.

/trunk/scripts/build/debug/300-gdb.sh | 2 1 1 0 +-
/trunk/config/debug/gdb.in | 21 19 2 0 +++++++++++++++++++--
2 files changed, 20 insertions(+), 3 deletions(-)
     1 # Alpha specific configuration file
     2 
     3 comment "Alpha specific configuration"
     4 
     5 choice
     6     bool
     7     prompt "Variant"
     8 
     9 config ARCH_ALPHA_EV4
    10     bool
    11     prompt "EV4"
    12 
    13 config ARCH_ALPHA_EV45
    14     bool
    15     prompt "EV45"
    16 
    17 config ARCH_ALPHA_EV5
    18     bool
    19     prompt "EV5"
    20 
    21 config ARCH_ALPHA_EV56
    22     bool
    23     prompt "EV56"
    24 
    25 config ARCH_ALPHA_EV6
    26     bool
    27     prompt "EV6"
    28 
    29 config ARCH_ALPHA_EV67
    30     bool
    31     prompt "EV67"
    32 
    33 endchoice
    34 
    35 config ARCH_ALPHA_VARIANT
    36     string
    37     default "ev4"   if ARCH_ALPHA_EV4
    38     default "ev45"  if ARCH_ALPHA_EV45
    39     default "ev5"   if ARCH_ALPHA_EV5
    40     default "ev56"  if ARCH_ALPHA_EV56
    41     default "ev6"   if ARCH_ALPHA_EV6
    42     default "ev67"  if ARCH_ALPHA_EV67
    43 
    44 config ARCH_CPU
    45     default "ev4"   if ARCH_ALPHA_EV4
    46     default "ev45"  if ARCH_ALPHA_EV45
    47     default "ev5"   if ARCH_ALPHA_EV5
    48     default "ev56"  if ARCH_ALPHA_EV56
    49     default "ev6"   if ARCH_ALPHA_EV6
    50     default "ev67"  if ARCH_ALPHA_EV67
    51 
    52 config ARCH_TUNE
    53     default "ev4"   if ARCH_ALPHA_EV4
    54     default "ev45"  if ARCH_ALPHA_EV45
    55     default "ev5"   if ARCH_ALPHA_EV5
    56     default "ev56"  if ARCH_ALPHA_EV56
    57     default "ev6"   if ARCH_ALPHA_EV6
    58     default "ev67"  if ARCH_ALPHA_EV67