config/companion_libs.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Thu May 21 19:00:55 2009 +0000 (2009-05-21)
branchgcc-4.4
changeset 1368 ec1cffe6d30b
parent 1318 5416f4ba36bf
child 1380 945dc995daa7
permissions -rw-r--r--
/devel/gcc-4.4:
- trivial spelling fix in TODO

-------- diffstat follows --------
/devel/gcc-4.4/TODO | 2 1 1 0 +-
1 file changed, 1 insertion(+), 1 deletion(-)
     1 # Companion libraries config options
     2 # Those libraries are required for different versions of gcc,
     3 # and can be used by binutils and gdb (maybe others as well).
     4 
     5 menu "Companion libraries"
     6 
     7 config GMP_MPFR
     8     bool
     9     prompt "GMP and MPFR"
    10     help
    11       gcc 4.3.0 and above requires both GMP and MPFR to build some frontends,
    12       and some other components can use them as well.
    13       
    14       These will be automatically selected if you choose gcc>=4.3.0, but you
    15       can say 'Y' here if you want to build those two libraries for the other
    16       components (that don't select them by default).
    17       
    18       The packages that can use GMP and MPFR are:
    19         - binutils
    20         - gcc
    21         - gdb
    22 
    23 config GMP_MPFR_TARGET
    24     bool
    25     prompt "Build libraries for the target"
    26     depends on GMP_MPFR
    27     depends on ! BARE_METAL
    28     default n
    29     help
    30       Also build libraries for the target. This can be usefull if you want
    31       to later build a compiler that will run on the target, or if you want
    32       to run gdb natively on the target.
    33 
    34 if GMP_MPFR
    35 source config/companion_libs/gmp.in
    36 source config/companion_libs/mpfr.in
    37 endif
    38 
    39 config PPL_CLOOG
    40     bool
    41     prompt "PPL and GLooG/PPL"
    42     help
    43       gcc-4.4.0 and above requires both PPL and CLooG/PPL to build some
    44       parts of the optimiser (GRAPHITE loop optimisation, to be precise).
    45       
    46       These will be automatically selected if you choose gcc>=4.4.0, but you
    47       can say 'Y' here, although it is unknown yet if any other component
    48       can use them.
    49 
    50 if PPL_CLOOG
    51 source config/companion_libs/ppl.in
    52 endif
    53 
    54 endmenu