config/companion_libs.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Mon May 25 17:22:54 2009 +0000 (2009-05-25)
branchgcc-4.4
changeset 1382 b3b1369752ba
parent 1324 48c12c696778
child 1384 b23f3c2e0c73
permissions -rw-r--r--
/devel/gcc-4.4:
- TODO: add new item

-------- diffstat follows --------
/devel/gcc-4.4/TODO | 1 1 0 0 +
1 file changed, 1 insertion(+)
     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 source config/companion_libs/cloog.in
    53 endif
    54 
    55 endmenu