config/gmp_mpfr.in
changeset 611 eac4dc8da8a9
child 634 c74132339c44
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/config/gmp_mpfr.in	Tue Jun 24 16:24:09 2008 +0000
     1.3 @@ -0,0 +1,34 @@
     1.4 +# GMP and MPFR libraries config options
     1.5 +
     1.6 +menu "GMP and MPFR"
     1.7 +
     1.8 +config GMP_MPFR
     1.9 +    bool
    1.10 +    prompt "GMP and MPFR"
    1.11 +    help
    1.12 +      Recent gcc needs both GMP and MPFR to build some frontends.
    1.13 +
    1.14 +      Say 'Y' here if you want to build those two libraries specifically
    1.15 +      for crosstool-NG.
    1.16 +
    1.17 +      The packages that can use GMP and MPFR are:
    1.18 +        - binutils
    1.19 +        - gcc
    1.20 +        - gdb
    1.21 +
    1.22 +config GMP_MPFR_TARGET
    1.23 +    bool
    1.24 +    prompt "Build libraries for the target"
    1.25 +    depends on GMP_MPFR
    1.26 +    default n
    1.27 +    help
    1.28 +      Also build libraries for the target. This can be usefull if you want
    1.29 +      to later build a compiler that will run on the target, or if you want
    1.30 +      to run gdb natively on the target.
    1.31 +
    1.32 +if GMP_MPFR
    1.33 +source config/cc/gmp.in
    1.34 +source config/cc/mpfr.in
    1.35 +endif
    1.36 +
    1.37 +endmenu