config/libc/newlib.in.2
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun May 08 19:02:44 2011 +0200 (2011-05-08)
changeset 2444 896cb0d36c1a
parent 2166 c1fe0639585a
child 2484 d1a8c2ae7946
permissions -rw-r--r--
config: fix recursive deps

The latest kconfig stuff is more stringent when it comes to validating
the dependency of the symbols. It is no longer possible to have a symbol
depend on itself (such as our construct for arch/cc/libc/... was doing).

Fix our generated-file infrastructure to avoid these situations when the
new kconfig stuff will be merged (in a following changeset).

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.