Browse Source

uclibc: improved to only disable gcc's TLS support if uClibc is build without thread support

user/amery/mess
Christian Wiese 14 years ago
committed by Alejandro Mery
parent
commit
823d1e7004
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      base/uclibc/pkg_conf/gcc.conf

+ 4
- 1
base/uclibc/pkg_conf/gcc.conf

@ -13,4 +13,7 @@
# --- SDE-COPYRIGHT-NOTE-END ---
var_append extraconfopt ' ' '--disable-decimal-float'
var_append extraconfopt ' ' '--disable-tls'
if [ "$SDECFG_PKG_UCLIBC_THREADSUPPORT" == "none" ]; then
var_append extraconfopt ' ' '--disable-tls'
fi

Loading…
Cancel
Save