diff options
author | Bryan Hundven <bryanhundven@gmail.com> | 2016-10-24 10:07:16 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-24 10:07:16 -0700 |
commit | dc280e477d6af7702e2481c17af20a7db83814d9 (patch) | |
tree | d02d3b765573080c43977520d56c77b6250457da /scripts/build/libc | |
parent | c7cb030fd58f7ec468de9693d78b73037091d7e0 (diff) | |
parent | df5a341e592fe162999ed9be6da3fb67eb885f12 (diff) | |
download | crosstool-ng-dc280e477d6af7702e2481c17af20a7db83814d9.tar.gz crosstool-ng-dc280e477d6af7702e2481c17af20a7db83814d9.tar.bz2 crosstool-ng-dc280e477d6af7702e2481c17af20a7db83814d9.zip |
Merge branch 'master' into janitorial
Diffstat (limited to 'scripts/build/libc')
-rw-r--r-- | scripts/build/libc/uClibc.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/build/libc/uClibc.sh b/scripts/build/libc/uClibc.sh index 47e135b9..be8d6bf2 100644 --- a/scripts/build/libc/uClibc.sh +++ b/scripts/build/libc/uClibc.sh @@ -377,6 +377,11 @@ manage_uClibc_config() { case "${CT_THREADS}:${CT_LIBC_UCLIBC_LNXTHRD}" in none:) ;; + linuxthreads:) + # Newer version of uClibc-ng, no old/new dichotomy + CT_KconfigEnableOption "UCLIBC_HAS_THREADS" "${dst}" + CT_KconfigEnableOption "UCLIBC_HAS_LINUXTHREADS" "${dst}" + ;; linuxthreads:old) CT_KconfigEnableOption "UCLIBC_HAS_THREADS" "${dst}" CT_KconfigEnableOption "LINUXTHREADS_OLD" "${dst}" |