config/libc/newlib.in.2
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun Dec 12 22:18:52 2010 +0100 (2010-12-12)
changeset 2215 bd86485d966a
parent 2166 c1fe0639585a
child 2484 d1a8c2ae7946
permissions -rw-r--r--
libc: hide no-thread for those C libraries that do not support it

Building non-threaded glibc has been unsupported for a long time, now:
http://sourceware.org/ml/libc-alpha/2005-08/msg00091.html

As eglibc is a spin-off of glibc: ditto.

So do not offer that possibility in the menuconfig.
Thanks to Thomas Petazzoni for spotting, and helping to solve, the issue!

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
yann@2165
     1
# newlib second-part options
yann@2165
     2
yann@2167
     3
config LIBC_NEWLIB_IO_C99FMT
yann@2167
     4
    bool
yann@2167
     5
    prompt "Enable IOs on C99 formats"
yann@2167
     6
    default n
yann@2167
     7
    help
yann@2167
     8
      Enable support for IOs on C99 formats.
yann@2167
     9
yann@2166
    10
config LIBC_NEWLIB_IO_LL
yann@2166
    11
    bool
yann@2166
    12
    prompt "Enable IOs on long long"
yann@2166
    13
    default n
yann@2166
    14
    help
yann@2166
    15
      Enable support for IOs on long long integers.
yann@2166
    16
yann@2165
    17
config LIBC_NEWLIB_IO_FLOAT
yann@2165
    18
    bool
yann@2165
    19
    prompt "Enable IOs on floats and doubles"
yann@2165
    20
    default n
yann@2165
    21
    help
yann@2165
    22
      Enable support for IOs on floating point
yann@2165
    23
      values (float and double).
yann@2165
    24
yann@2165
    25
config LIBC_NEWLIB_IO_LDBL
yann@2165
    26
    bool
yann@2165
    27
    prompt "Enable IOs on long doubles"
yann@2165
    28
    default n
yann@2165
    29
    depends on LIBC_NEWLIB_IO_FLOAT
yann@2165
    30
    help
yann@2165
    31
      Enable support for IOs on long doubles.