mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-19 12:57:53 +00:00
96245813d8
kconfig bools are disabled by default, so specifying 'default n' is useless and noisy. This patch removes all occurrences of 'default n'. Signed-off-by: "Benoît THÉBAUDEAU" <benoit.thebaudeau@advansee.com>
28 lines
635 B
Groff
28 lines
635 B
Groff
# newlib second-part options
|
|
|
|
config LIBC_NEWLIB_IO_C99FMT
|
|
bool
|
|
prompt "Enable IOs on C99 formats"
|
|
help
|
|
Enable support for IOs on C99 formats.
|
|
|
|
config LIBC_NEWLIB_IO_LL
|
|
bool
|
|
prompt "Enable IOs on long long"
|
|
help
|
|
Enable support for IOs on long long integers.
|
|
|
|
config LIBC_NEWLIB_IO_FLOAT
|
|
bool
|
|
prompt "Enable IOs on floats and doubles"
|
|
help
|
|
Enable support for IOs on floating point
|
|
values (float and double).
|
|
|
|
config LIBC_NEWLIB_IO_LDBL
|
|
bool
|
|
prompt "Enable IOs on long doubles"
|
|
depends on LIBC_NEWLIB_IO_FLOAT
|
|
help
|
|
Enable support for IOs on long doubles.
|