config/gmp_mpfr/mpfr.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Thu Mar 26 18:47:34 2009 +0000 (2009-03-26)
changeset 1268 5594b05bc2d8
parent 1199 4714cf419e98
permissions -rw-r--r--
Add support for building toolchains with gcc-4.4 snapshots.
Initial patch by Dmitry PLOTNIKOV: http://sourceware.org/ml/crossgcc/2009-03/msg00053.html
It [the toolchain] uses current ct-ng (nightly snapshot 20090324, latest
release 1.3.2 work also), glibc 2.9 (from CVS), binutils 2.19 and latest
snapshot of GCC 4.4.0 (as of March 20, 2009).

We have successfully built linux kernel 2.6.29 and a lot of other stuff
with this toolchain.

Here's the patch that adds GCC 4.4.0 to the ct-ng menu and enables it to
download a 4.4.0 snapshot from ftp.

Patch was adpated by me, mostly to better fit the configuration layout.

/trunk/scripts/build/cc/gcc.sh | 34 22 12 0 ++++++++++++++++++++++------------
/trunk/config/cc/gcc.in | 35 30 5 0 ++++++++++++++++++++++++++++++-----
2 files changed, 52 insertions(+), 17 deletions(-)
yann@466
     1
# GMP options
yann@466
     2
yann@466
     3
choice
yann@466
     4
    bool
yann@466
     5
    prompt "MPFR version"
yann@466
     6
yann@466
     7
config MPFR_V_2_3_1
yann@466
     8
    bool
yann@466
     9
    prompt "2.3.1"
yann@466
    10
yann@902
    11
config MPFR_V_2_3_2
yann@902
    12
    bool
yann@902
    13
    prompt "2.3.2"
yann@902
    14
yann@1199
    15
config MPFR_V_2_4_0
yann@1199
    16
    bool
yann@1249
    17
    prompt "2.4.0"
yann@1249
    18
yann@1249
    19
config MPFR_V_2_4_1
yann@1249
    20
    bool
yann@1249
    21
    prompt "2.4.1"
yann@1199
    22
yann@466
    23
# CT_INSERT_VERSION_ABOVE
yann@466
    24
# Don't remove above line!
yann@466
    25
endchoice
yann@466
    26
yann@466
    27
config MPFR_VERSION
yann@466
    28
    string
yann@466
    29
    default "2.3.1" if MPFR_V_2_3_1
yann@902
    30
    default "2.3.2" if MPFR_V_2_3_2
yann@1199
    31
    default "2.4.0" if MPFR_V_2_4_0
yann@1249
    32
    default "2.4.1" if MPFR_V_2_4_1
yann@466
    33
# CT_INSERT_VERSION_STRING_ABOVE
yann@466
    34
# Don't remove above line!
yann@466
    35
yann@466
    36
config MPFR_CHECK
yann@466
    37
    bool
yann@466
    38
    prompt "Check MPFR"
yann@466
    39
    default y
yann@466
    40
    help
yann@466
    41
      It is highly recommended that 'make check' is run against the newly built
yann@466
    42
      MPFR library. See http://gmplib.org/