arch/alpha/config.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Fri Jun 20 15:16:43 2008 +0000 (2008-06-20)
changeset 602 1968d150a34f
child 628 87802cb25a0f
permissions -rw-r--r--
GMP and MPFR are no longer a sub-component of gcc (config-wise).
Build and install GMP and MPFR for the target.
Use the target GMP and MPFR to build the native gdb.
Have separate extra_config for cross gdb, native gdb and gdbserver.
Check native GMP and MPFR in //.

/trunk/scripts/build/debug/300-gdb.sh | 27 19 8 0 ++++++++++++++++-------
/trunk/scripts/build/gmp.sh | 47 39 8 0 ++++++++++++++++++++++++++++++++-------
/trunk/scripts/build/mpfr.sh | 49 40 9 0 +++++++++++++++++++++++++++++++++--------
/trunk/steps.mk | 2 2 0 0 ++
/trunk/config/cc/gcc.in | 18 1 17 0 +--------------
/trunk/config/debug/gdb.in | 6 1 5 0 +----
/trunk/config/config.in | 1 1 0 0 +
/trunk/config/gmp_mpfr.in | 34 34 0 0 ++++++++++++++++++++++++++++
8 files changed, 137 insertions(+), 47 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