config/gmp_mpfr.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Wed Mar 04 17:59:35 2009 +0000 (2009-03-04)
changeset 1225 4b065e7e2130
parent 634 c74132339c44
permissions -rw-r--r--
Move do_finish from scripts/functions to its own file in scipts/build/internals.sh.

/trunk/scripts/build/internals.sh | 907 4 903 0 ---------------------------------------------
/trunk/scripts/addToolVersion.sh | 8 4 4 0
/trunk/scripts/crosstool-NG.sh.in | 1 1 0 0 +
/trunk/scripts/functions | 48 0 48 0 --
4 files changed, 9 insertions(+), 955 deletions(-)
     1 # GMP and MPFR libraries config options
     2 
     3 menu "GMP and MPFR"
     4 
     5 config GMP_MPFR
     6     bool
     7     prompt "GMP and MPFR"
     8     help
     9       Recent gcc needs both GMP and MPFR to build some frontends.
    10 
    11       Say 'Y' here if you want to build those two libraries specifically
    12       for crosstool-NG.
    13 
    14       The packages that can use GMP and MPFR are:
    15         - binutils
    16         - gcc
    17         - gdb
    18 
    19 config GMP_MPFR_TARGET
    20     bool
    21     prompt "Build libraries for the target"
    22     depends on GMP_MPFR
    23     depends on ! BARE_METAL
    24     default n
    25     help
    26       Also build libraries for the target. This can be usefull if you want
    27       to later build a compiler that will run on the target, or if you want
    28       to run gdb natively on the target.
    29 
    30 if GMP_MPFR
    31 source config/gmp_mpfr/gmp.in
    32 source config/gmp_mpfr/mpfr.in
    33 endif
    34 
    35 endmenu