2010-06-08 22:41:25 +00:00
|
|
|
# uClibc second-part option
|
|
|
|
|
2014-07-27 21:47:24 +00:00
|
|
|
if THREADS_LT
|
2010-06-08 22:41:25 +00:00
|
|
|
|
|
|
|
choice
|
|
|
|
bool
|
|
|
|
prompt "Linuxthread implementation: "
|
|
|
|
default LIBC_UCLIBC_LNXTHRD_OLD
|
|
|
|
|
|
|
|
config LIBC_UCLIBC_LNXTHRD_OLD
|
|
|
|
bool
|
|
|
|
prompt "old/stable"
|
|
|
|
help
|
|
|
|
From the uClibc config option help:
|
|
|
|
There are two versions of linuxthreads. The older (stable) version
|
|
|
|
has been in uClibc for quite a long time but hasn't seen too many
|
|
|
|
updates other than bugfixes.
|
|
|
|
|
|
|
|
config LIBC_UCLIBC_LNXTHRD_NEW
|
|
|
|
bool
|
|
|
|
prompt "new"
|
|
|
|
help
|
|
|
|
From the uClibc config option help:
|
|
|
|
The new version has not been tested much, and lacks ports for arches
|
2015-11-10 06:30:45 +00:00
|
|
|
which glibc does not support (like frv, etc...), but is based on
|
2010-06-08 22:41:25 +00:00
|
|
|
the latest code from glibc, so it may be the only choice for the
|
|
|
|
newer ports (like alpha/amd64/64bit arches and hppa).
|
|
|
|
|
|
|
|
endchoice
|
|
|
|
|
2014-07-27 21:47:24 +00:00
|
|
|
endif # THREADS_LT
|
2010-07-02 23:15:28 +00:00
|
|
|
|
2010-06-08 22:41:25 +00:00
|
|
|
config LIBC_UCLIBC_LNXTHRD
|
|
|
|
string
|
2010-07-02 23:15:28 +00:00
|
|
|
default "" if THREADS_NONE
|
2014-07-27 21:47:24 +00:00
|
|
|
default "" if THREADS_NATIVE
|
2010-06-08 22:41:25 +00:00
|
|
|
default "old" if LIBC_UCLIBC_LNXTHRD_OLD
|
|
|
|
default "new" if LIBC_UCLIBC_LNXTHRD_NEW
|
2010-07-25 22:07:17 +00:00
|
|
|
|
|
|
|
config LIBC_UCLIBC_LOCALES
|
|
|
|
bool
|
|
|
|
select LIBC_UCLIBC_WCHAR
|
|
|
|
prompt "Add support for locales"
|
|
|
|
help
|
|
|
|
Say y if you want uClibc to support localisation.
|
|
|
|
|
|
|
|
Note that seems to be broken on recent uClibc releases.
|
|
|
|
|
|
|
|
config LIBC_UCLIBC_LOCALES_PREGEN_DATA
|
|
|
|
bool
|
|
|
|
prompt "Use pregen locales"
|
|
|
|
depends on LIBC_UCLIBC_LOCALES
|
2015-11-10 22:41:33 +00:00
|
|
|
depends on ! LIBC_UCLIBC_NG
|
2010-07-25 22:07:17 +00:00
|
|
|
default y
|
|
|
|
help
|
|
|
|
If you see issues with using pre-generated locales data,
|
|
|
|
you can try switching this off.
|
|
|
|
|
|
|
|
If so, please report the issue, so we can default this
|
|
|
|
to off if too many people complain.
|
|
|
|
|
2015-11-23 06:18:08 +00:00
|
|
|
config LIBC_UCLIBC_IPV6
|
|
|
|
bool
|
|
|
|
prompt "Add support for IPv6"
|
|
|
|
help
|
|
|
|
Say y if you want uClibc to support IPv6.
|
|
|
|
|
2010-07-25 22:07:17 +00:00
|
|
|
config LIBC_UCLIBC_WCHAR
|
|
|
|
bool
|
|
|
|
prompt "Add support for WCHAR"
|
|
|
|
help
|
|
|
|
Say y if you want uClibc to support WCHAR.
|
|
|
|
|
|
|
|
Maybe this is needed, if you're building a C++-Compiler
|
2014-01-04 15:19:18 +00:00
|
|
|
|
|
|
|
config LIBC_UCLIBC_FENV
|
|
|
|
bool
|
|
|
|
prompt "Add support for fenv.h"
|
|
|
|
default y if ARCH_x86
|
|
|
|
help
|
|
|
|
fenv.h provides functions to control the floating point environment,
|
|
|
|
such as rounding mode, exceptions...
|
|
|
|
|
|
|
|
For some architectures, fenv.h is incomplete, so is not installed
|
|
|
|
by default. x86 is known to have a rather complete fenv.h, so it is
|
|
|
|
installed by default only for x86.
|
|
|
|
|
|
|
|
If you need fenv.h on other architectures, say 'y' here, but you may
|
|
|
|
encounter some issues.
|