summaryrefslogtreecommitdiff
path: root/config/libc
diff options
context:
space:
mode:
Diffstat (limited to 'config/libc')
-rw-r--r--config/libc/eglibc.in3
-rw-r--r--config/libc/glibc.in3
-rw-r--r--config/libc/mingw.in3
-rw-r--r--config/libc/none.in6
-rw-r--r--config/libc/uClibc.in4
5 files changed, 19 insertions, 0 deletions
diff --git a/config/libc/eglibc.in b/config/libc/eglibc.in
index b677df0..e939d03 100644
--- a/config/libc/eglibc.in
+++ b/config/libc/eglibc.in
@@ -12,6 +12,9 @@
## help cross-compilation support. EGLIBC also includes some embedded ports
## help (such as e500/spe) that are normally separate add-ons of GLIBC.
+config THREADS
+ default "nptl"
+
choice
bool
prompt "eglibc version"
diff --git a/config/libc/glibc.in b/config/libc/glibc.in
index 5870995..2e34793 100644
--- a/config/libc/glibc.in
+++ b/config/libc/glibc.in
@@ -8,6 +8,9 @@
## help The de-facto standard for Linux distributions.
## help Feature-rich, but large... Most usefull for desktop-like systems.
+config THREADS
+ default "nptl"
+
choice
bool
prompt "glibc version"
diff --git a/config/libc/mingw.in b/config/libc/mingw.in
index 8c32b91..8b4d98a 100644
--- a/config/libc/mingw.in
+++ b/config/libc/mingw.in
@@ -7,6 +7,9 @@
##
## help The de-facto standard for Mingw distributions.
+config THREADS
+ default "win32"
+
choice
bool
prompt "Windows API version"
diff --git a/config/libc/none.in b/config/libc/none.in
index 78a0612..d587faf 100644
--- a/config/libc/none.in
+++ b/config/libc/none.in
@@ -11,3 +11,9 @@
## help on the C library.
## help
## help If unsure: do *not* choose that, and use another option in the choice.
+
+# The no-threads is usually set in the main libc.in config file.
+# But since the "none" C library does not show the threads choice,
+# we have to define the no-threads value ourselves here:
+config THREADS
+ default "none"
diff --git a/config/libc/uClibc.in b/config/libc/uClibc.in
index f641a6f..1529642 100644
--- a/config/libc/uClibc.in
+++ b/config/libc/uClibc.in
@@ -11,6 +11,10 @@
## help Highly configurable, thus as feature-rich as you
## help need, without compromising for size.
+config THREADS
+ default "nptl" if THREADS_NATIVE
+ default "linuxthreads" if THREADS_LT
+
if ARCH_FLOAT_SOFTFP
comment "'softfp' ABI and uClibc is not entirely tested in crosstool-NG"
comment "You may experience issues, although it should work just fine"