diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-12-07 23:14:19 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-12-07 23:14:19 +0000 |
commit | 5105581c023f46e27be16e70d641899b7b35bd48 (patch) | |
tree | d33a26c597d2766d371bbffd475d0fb3e63d30b9 /toolchain | |
parent | 92834c567469ecb5e10aae60de0984960db60b01 (diff) | |
download | buildroot-novena-5105581c023f46e27be16e70d641899b7b35bd48.tar.gz buildroot-novena-5105581c023f46e27be16e70d641899b7b35bd48.zip |
add more threading options
Diffstat (limited to 'toolchain')
-rw-r--r-- | toolchain/uClibc/Config.in | 25 |
1 files changed, 15 insertions, 10 deletions
diff --git a/toolchain/uClibc/Config.in b/toolchain/uClibc/Config.in index b364aaed2..71b222fb5 100644 --- a/toolchain/uClibc/Config.in +++ b/toolchain/uClibc/Config.in @@ -22,16 +22,21 @@ config BR2_ENABLE_LOCALE help Enable locale/gettext/i18n support? -config BR2_PTHREADS - bool "Enable thread support" - default y +choice + prompt "Thread library implementation" + default BR2_PTHREADS_OLD help - Enable support for libpthreads + Select the version of libpthreads you want to use. -config BR2_PTHREADS_NATIVE - bool "Enable Native POSIX Threading (NPTL) support?" - default n - depends on BR2_PTHREADS - help - Enable Native POSIX Threading (NPTL) support? + config BR2_PTHREADS_NONE + bool "none" + + config BR2_PTHREADS + bool "linuxthreads" + + config BR2_PTHREADS_OLD + bool "linuxthreads (stable/old)" + config BR2_PTHREADS_NATIVE + bool "Native POSIX Threading (NPTL)" +endchoice |