mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-19 12:57:53 +00:00
glibc: nptl is default from 2.20, so dont add to addons_list
No longer recommended practice to use --enable-add-ons=nptl, so for 2.20 and later (along with custom glibc), don't add the CT_THREADS to the addons_list https://sourceware.org/glibc/wiki/Release/2.20#Packaging_Changes Signed-off-by: David Holsgrove <david.holsgrove@xilinx.com>
This commit is contained in:
parent
f1bdbe995b
commit
d7b4f0dbe3
@ -20,6 +20,7 @@ choice
|
|||||||
config LIBC_GLIBC_V_2_20
|
config LIBC_GLIBC_V_2_20
|
||||||
bool
|
bool
|
||||||
prompt "2.20"
|
prompt "2.20"
|
||||||
|
select LIBC_GLIBC_2_20_or_later
|
||||||
|
|
||||||
config LIBC_GLIBC_V_2_19
|
config LIBC_GLIBC_V_2_19
|
||||||
bool
|
bool
|
||||||
@ -96,6 +97,9 @@ config LIBC_GLIBC_V_2_8
|
|||||||
|
|
||||||
endchoice
|
endchoice
|
||||||
|
|
||||||
|
config LIBC_GLIBC_2_20_or_later
|
||||||
|
bool
|
||||||
|
|
||||||
config LIBC_VERSION
|
config LIBC_VERSION
|
||||||
string
|
string
|
||||||
# Don't remove next line
|
# Don't remove next line
|
||||||
|
@ -487,10 +487,12 @@ do_libc_add_ons_list() {
|
|||||||
local addons_list="$( echo "${CT_LIBC_ADDONS_LIST}" \
|
local addons_list="$( echo "${CT_LIBC_ADDONS_LIST}" \
|
||||||
|sed -r -e "s/[[:space:],]/${sep}/g;" \
|
|sed -r -e "s/[[:space:],]/${sep}/g;" \
|
||||||
)"
|
)"
|
||||||
case "${CT_THREADS}" in
|
if [ "${CT_LIBC_GLIBC_2_20_or_later}" != "y" ]; then
|
||||||
none) ;;
|
case "${CT_THREADS}" in
|
||||||
*) addons_list="${addons_list}${sep}${CT_THREADS}";;
|
none) ;;
|
||||||
esac
|
*) addons_list="${addons_list}${sep}${CT_THREADS}";;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
[ "${CT_LIBC_GLIBC_USE_PORTS}" = "y" ] && addons_list="${addons_list}${sep}ports"
|
[ "${CT_LIBC_GLIBC_USE_PORTS}" = "y" ] && addons_list="${addons_list}${sep}ports"
|
||||||
# Remove duplicate, leading and trailing separators
|
# Remove duplicate, leading and trailing separators
|
||||||
echo "${addons_list}" |sed -r -e "s/${sep}+/${sep}/g; s/^${sep}//; s/${sep}\$//;"
|
echo "${addons_list}" |sed -r -e "s/${sep}+/${sep}/g; s/^${sep}//; s/${sep}\$//;"
|
||||||
|
Loading…
Reference in New Issue
Block a user