config/companion_libs.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun May 03 21:10:15 2009 +0000 (2009-05-03)
changeset 1318 5416f4ba36bf
parent 850 config/gmp_mpfr.in@ef8549b58b6f
child 1324 48c12c696778
permissions -rw-r--r--
Prepare for gcc-4.4:
- add 'companion_libs/' to hold all libraries needed to build gcc-4.3+ and gcc-4.4+
- move GMP & MPFR to 'companion_libs/'

-------- diffstat follows --------
/trunk/scripts/build/gmp.sh | 85 0 85 0 ----------------------------
/trunk/scripts/build/mpfr.sh | 139 0 139 0 ---------------------------------------------
/trunk/scripts/addToolVersion.sh | 4 2 2 0
/trunk/scripts/crosstool-NG.sh.in | 4 2 2 0
/trunk/config/companion_libs.in | 17 10 7 0 +++---
/trunk/config/gmp_mpfr/gmp.in | 32 0 32 0 ----------
/trunk/config/gmp_mpfr/mpfr.in | 42 0 42 0 --------------
/trunk/config/config.in | 2 1 1 0
/trunk/config/gmp_mpfr.in | 35 0 35 0 -----------
9 files changed, 15 insertions(+), 345 deletions(-)
     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 (eg. binutils and gdb).
    13       
    14       Say 'Y' here if you want to build those two libraries specifically
    15       for crosstool-NG.
    16       
    17       The packages that can use GMP and MPFR are:
    18         - binutils
    19         - gcc
    20         - gdb
    21 
    22 config GMP_MPFR_TARGET
    23     bool
    24     prompt "Build libraries for the target"
    25     depends on GMP_MPFR
    26     depends on ! BARE_METAL
    27     default n
    28     help
    29       Also build libraries for the target. This can be usefull if you want
    30       to later build a compiler that will run on the target, or if you want
    31       to run gdb natively on the target.
    32 
    33 if GMP_MPFR
    34 source config/companion_libs/gmp.in
    35 source config/companion_libs/mpfr.in
    36 endif
    37 
    38 endmenu