config/gmp_mpfr.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Tue Jun 24 16:24:09 2008 +0000 (2008-06-24)
changeset 611 eac4dc8da8a9
child 634 c74132339c44
permissions -rw-r--r--
New patches from Ioannis E. VENETIS to allow building more up-to-date Alpha x-compilers.
Some patches are still missing, though.
See: http://sourceware.org/ml/libc-help/2008-06/msg00061.html

/trunk/patches/glibc/2.5.1/270-glibc-alpha-cfi.patch | 25 25 0 0 ++++++++++
/trunk/patches/glibc/2.5.1/280-glibc-alpha-sigsuspend.patch | 24 24 0 0 ++++++++++
/trunk/patches/glibc/2.5/270-glibc-alpha-cfi.patch | 25 25 0 0 ++++++++++
/trunk/patches/glibc/2.5/280-glibc-alpha-sigsuspend.patch | 24 24 0 0 ++++++++++
/trunk/patches/glibc/linuxthreads-2.3.6/270-glibc-linuxthreads-alpha-cfi.patch | 25 25 0 0 ++++++++++
/trunk/patches/gcc/4.2.0/940-gcc-alpha-signal_h.patch | 17 17 0 0 +++++++
/trunk/patches/gcc/4.2.1/940-gcc-alpha-signal_h.patch | 17 17 0 0 +++++++
/trunk/patches/gcc/4.3.0/940-gcc-alpha-signal_h.patch | 17 17 0 0 +++++++
/trunk/patches/gcc/4.2.2/940-gcc-alpha-signal_h.patch | 17 17 0 0 +++++++
/trunk/patches/gcc/4.3.1/940-gcc-alpha-signal_h.patch | 17 17 0 0 +++++++
/trunk/patches/gcc/4.2.3/940-gcc-alpha-signal_h.patch | 17 17 0 0 +++++++
11 files changed, 225 insertions(+)
yann@602
     1
# GMP and MPFR libraries config options
yann@602
     2
yann@602
     3
menu "GMP and MPFR"
yann@602
     4
yann@602
     5
config GMP_MPFR
yann@602
     6
    bool
yann@602
     7
    prompt "GMP and MPFR"
yann@602
     8
    help
yann@602
     9
      Recent gcc needs both GMP and MPFR to build some frontends.
yann@602
    10
yann@602
    11
      Say 'Y' here if you want to build those two libraries specifically
yann@602
    12
      for crosstool-NG.
yann@602
    13
yann@602
    14
      The packages that can use GMP and MPFR are:
yann@602
    15
        - binutils
yann@602
    16
        - gcc
yann@602
    17
        - gdb
yann@602
    18
yann@602
    19
config GMP_MPFR_TARGET
yann@602
    20
    bool
yann@602
    21
    prompt "Build libraries for the target"
yann@602
    22
    depends on GMP_MPFR
yann@602
    23
    default n
yann@602
    24
    help
yann@602
    25
      Also build libraries for the target. This can be usefull if you want
yann@602
    26
      to later build a compiler that will run on the target, or if you want
yann@602
    27
      to run gdb natively on the target.
yann@602
    28
yann@602
    29
if GMP_MPFR
yann@602
    30
source config/cc/gmp.in
yann@602
    31
source config/cc/mpfr.in
yann@602
    32
endif
yann@602
    33
yann@602
    34
endmenu