From 0dd78b4b3e32d6daff3352894f7a72a51461270c Mon Sep 17 00:00:00 2001 From: Christian Wiese Date: Fri, 24 Sep 2010 21:51:36 +0200 Subject: [PATCH] uclibc: changed to always disable gcc's TLS support besides while using the newer threads implementation of uclibc (see note) Note: Tests have shown that the newer threads implementation in uClibc is not working and seems to be even half implemented for most architectures! --- base/uclibc/pkg_conf/gcc.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/uclibc/pkg_conf/gcc.conf b/base/uclibc/pkg_conf/gcc.conf index 81e5941a7..ddc8ce8eb 100644 --- a/base/uclibc/pkg_conf/gcc.conf +++ b/base/uclibc/pkg_conf/gcc.conf @@ -14,6 +14,6 @@ var_append extraconfopt ' ' '--disable-decimal-float' -if [ "$SDECFG_PKG_UCLIBC_THREADSUPPORT" == "none" ]; then +if [ "$SDECFG_PKG_UCLIBC_THREADSUPPORT" != "new" ]; then var_append extraconfopt ' ' '--disable-tls' fi