diff options
author | Bryan Hundven <bryanhundven@gmail.com> | 2016-10-06 10:06:02 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-06 10:06:02 -0700 |
commit | df5a341e592fe162999ed9be6da3fb67eb885f12 (patch) | |
tree | f001b0c7098ce0a83767f0e4cb143158bd518b36 /scripts/build/libc | |
parent | 3ec2211548a853203e070af6810f49825ec46a6a (diff) | |
parent | 1d43ed3151e184452ce97ba1a326b2027f0dc208 (diff) | |
download | crosstool-ng-df5a341e592fe162999ed9be6da3fb67eb885f12.tar.gz crosstool-ng-df5a341e592fe162999ed9be6da3fb67eb885f12.tar.bz2 crosstool-ng-df5a341e592fe162999ed9be6da3fb67eb885f12.zip |
Merge pull request #391 from stilor/uclibc-1.0.14
Upgrade uClibc-ng to 1.0.17 (1.0.18 has issues - marked experimental)
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}" |