config/libc.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Thu Aug 07 14:05:47 2008 +0000 (2008-08-07)
changeset 766 717efd8b78b4
parent 448 08da017ba46b
child 787 0725d7f8ab22
permissions -rw-r--r--
Update all samples to the latest set of options.
Update some samples to use newer features.
Add patches for the uClibc-20080801 snapshot to be able to build with gcc-4.3.
Add a patch against glibc-2.7 to allow building PPC with latest kernel headers.
Add a patch to gcc to use an alternate unwinding when built against uClibc (after a private explanation/request by Daniel Egger <daniel@eggers-club.de>)

/trunk/patches/glibc/2.7/230-powerpc-private_futex.patch | 15 15 0 0 +
/trunk/patches/uClibc/20080801/300-fix-asm.patch | 175 175 0 0 +++++++++
/trunk/patches/uClibc/20080801/100-ifaddrs.patch | 190 190 0 0 +++++++++
/trunk/patches/uClibc/20080801/200-mips-typeof.patch | 112 112 0 0 ++++++
/trunk/patches/gcc/4.3.1/330-unwind-for-uClibc.patch | 25 25 0 0 +
/trunk/samples/x86_64-unknown-linux-gnu/crosstool.config | 17 10 7 0 +
/trunk/samples/armeb-unknown-linux-uclibc/crosstool.config | 7 5 2 0 +
/trunk/samples/arm-unknown-linux-gnueabi/crosstool.config | 7 5 2 0 +
/trunk/samples/ia64-unknown-linux-gnu/crosstool.config | 14 11 3 0 +
/trunk/samples/x86_64-unknown-linux-uclibc/uClibc-20080801.config | 232 232 0 0 ++++++++++++
/trunk/samples/x86_64-unknown-linux-uclibc/crosstool.config | 34 21 13 0 +-
/trunk/samples/i686-nptl-linux-gnu/crosstool.config | 10 7 3 0 +
/trunk/samples/powerpc-unknown-linux-gnu/crosstool.config | 12 9 3 0 +
/trunk/samples/mips-unknown-linux-uclibc/uClibc-20080801.config | 249 249 0 0 ++++++++++++
/trunk/samples/mips-unknown-linux-uclibc/crosstool.config | 38 23 15 0 +-
/trunk/samples/arm-unknown-linux-uclibcgnueabi/crosstool.config | 14 10 4 0 +
/trunk/samples/armeb-unknown-linux-gnu/crosstool.config | 7 5 2 0 +
/trunk/samples/powerpc-unknown_nofpu-linux-gnu/crosstool.config | 12 9 3 0 +
/trunk/samples/arm-unknown-linux-uclibc/crosstool.config | 7 5 2 0 +
/trunk/samples/i586-geode-linux-uclibc/uClibc-20080801.config | 261 261 0 0 +++++++++++++
/trunk/samples/i586-geode-linux-uclibc/crosstool.config | 32 20 12 0 ++
/trunk/samples/powerpc-unknown-linux-uclibc/crosstool.config | 12 9 3 0 +
/trunk/samples/mipsel-unknown-linux-gnu/crosstool.config | 7 5 2 0 +
/trunk/samples/armeb-unknown-linux-uclibcgnueabi/crosstool.config | 7 5 2 0 +
/trunk/samples/alphaev56-unknown-linux-gnu/crosstool.config | 16 10 6 0 +
25 files changed, 1428 insertions(+), 84 deletions(-)
yann@1
     1
# C library options
yann@1
     2
yann@1
     3
menu "C-library"
yann@1
     4
yann@1
     5
choice
yann@1
     6
    bool
yann@1
     7
    prompt "C-library to use:"
yann@1
     8
    default LIBC_GLIBC
yann@1
     9
yann@1
    10
config LIBC_GLIBC
yann@1
    11
    bool
yann@1
    12
    prompt "glibc"
yann@95
    13
    select LIBC_SUPPORT_NPTL
yann@95
    14
    select LIBC_SUPPORT_LINUXTHREADS
yann@1
    15
yann@1
    16
config LIBC_UCLIBC
yann@1
    17
    bool
yann@1
    18
    prompt "uClibc"
yann@95
    19
    select LIBC_SUPPORT_LINUXTHREADS
yann@1
    20
yann@1
    21
endchoice
yann@1
    22
yann@1
    23
config LIBC_VERSION
yann@1
    24
    string
yann@1
    25
yann@1
    26
config LIBC
yann@1
    27
    string
yann@1
    28
    default "glibc" if LIBC_GLIBC
yann@1
    29
    default "uClibc" if LIBC_UCLIBC
yann@1
    30
yann@95
    31
config LIBC_SUPPORT_NPTL
yann@95
    32
    bool
yann@95
    33
    default n
yann@95
    34
yann@95
    35
config LIBC_SUPPORT_LINUXTHREADS
yann@95
    36
    bool
yann@95
    37
    default n
yann@95
    38
yann@1
    39
if LIBC_GLIBC
yann@448
    40
source config/libc/glibc.in
yann@1
    41
endif
yann@1
    42
yann@1
    43
if LIBC_UCLIBC
yann@448
    44
source config/libc/uClibc.in
yann@1
    45
endif
yann@1
    46
yann@710
    47
config LIBC_VERSION
yann@710
    48
    help
yann@710
    49
      Enter the date of the snapshot you want to use in the form: YYYYMMDD
yann@710
    50
      where YYYY is the 4-digit year, MM the 2-digit month and DD the 2-digit
yann@710
    51
      day in the month.
yann@710
    52
      
yann@710
    53
      Please note:
yann@710
    54
      - glibc has snapshots done every monday, and only the last ten are kept.
yann@710
    55
      - uClibc has daily snapshots, and only the last 30-or-so are kept.
yann@710
    56
      
yann@710
    57
      So if you want to be able to re-build your toolchain later, you will
yann@710
    58
      have to sacve your C library tarball by yourself.
yann@710
    59
yann@1
    60
endmenu