diff options
author | Yann E. MORIN <yann.morin.1998@free.fr> | 2014-07-28 00:09:38 +0200 |
---|---|---|
committer | Yann E. MORIN <yann.morin.1998@free.fr> | 2014-07-28 01:23:34 +0200 |
commit | a394fe49ece3d01c85e65a02774c2cc170c81a54 (patch) | |
tree | cc94d5e59af36d14a1bfcefffdce2c833b3dd680 | |
parent | b1f536966b8cae68098d94dbe372fa5054440adb (diff) | |
download | crosstool-ng-a394fe49ece3d01c85e65a02774c2cc170c81a54.tar.gz crosstool-ng-a394fe49ece3d01c85e65a02774c2cc170c81a54.tar.bz2 crosstool-ng-a394fe49ece3d01c85e65a02774c2cc170c81a54.zip |
libc: libces are responsible for naming their threads implementation
This will help add new implementations, such as the one in musl.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Bryan Hundven <bryanhundven@gmail.com>
-rw-r--r-- | config/libc.in | 7 | ||||
-rw-r--r-- | config/libc/eglibc.in | 3 | ||||
-rw-r--r-- | config/libc/glibc.in | 3 | ||||
-rw-r--r-- | config/libc/mingw.in | 3 | ||||
-rw-r--r-- | config/libc/none.in | 6 | ||||
-rw-r--r-- | config/libc/uClibc.in | 4 |
6 files changed, 21 insertions, 5 deletions
diff --git a/config/libc.in b/config/libc.in index 240a01ef..ba6da8ff 100644 --- a/config/libc.in +++ b/config/libc.in @@ -39,13 +39,10 @@ config LIBC_SUPPORT_THREADS_WIN32 config LIBC_SUPPORT_THREADS_NONE bool +# C libraries should provide other values config THREADS string - default "nptl" if THREADS_NATIVE - default "linuxthreads" if THREADS_LT - default "win32" if THREADS_WIN32 - default "none" if THREADS_NONE || LIBC_none -# No C library, no threads! + default "none" if THREADS_NONE if ! LIBC_none diff --git a/config/libc/eglibc.in b/config/libc/eglibc.in index b677df0b..e939d03b 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 5870995e..2e34793b 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 8c32b916..8b4d98a2 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 78a06125..d587faff 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 f641a6f7..15296425 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" |