config/libc/newlib.in.2
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sat Oct 23 00:54:46 2010 +0200 (2010-10-23)
changeset 2165 e67ab7a73b2f
child 2166 c1fe0639585a
permissions -rw-r--r--
libc/newlib: add option to compile support for float IOs

Adds support to enable/disable IOs of floating point values
(float, double, and long double).

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
     1 # newlib second-part options
     2 
     3 config LIBC_NEWLIB_IO_FLOAT
     4     bool
     5     prompt "Enable IOs on floats and doubles"
     6     default n
     7     help
     8       Enable support for IOs on floating point
     9       values (float and double).
    10 
    11 config LIBC_NEWLIB_IO_LDBL
    12     bool
    13     prompt "Enable IOs on long doubles"
    14     default n
    15     depends on LIBC_NEWLIB_IO_FLOAT
    16     help
    17       Enable support for IOs on long doubles.