500de2598a
The eglibc support has been marked deprecated since 2015.08, so it's time to remove it. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
30 lines
545 B
Plaintext
30 lines
545 B
Plaintext
if BR2_TOOLCHAIN_BUILDROOT_GLIBC
|
|
|
|
config BR2_PACKAGE_GLIBC
|
|
bool
|
|
default y
|
|
select BR2_PACKAGE_LINUX_HEADERS
|
|
|
|
choice
|
|
prompt "glibc version"
|
|
default BR2_GLIBC_VERSION_2_22
|
|
|
|
config BR2_GLIBC_VERSION_2_22
|
|
bool "2.22"
|
|
# No support for pthread barriers on < v9 ISA
|
|
depends on !BR2_sparc
|
|
|
|
config BR2_GLIBC_VERSION_2_23
|
|
bool "2.23"
|
|
# No support for pthread barriers on < v9 ISA
|
|
depends on !BR2_sparc
|
|
|
|
endchoice
|
|
|
|
endif
|
|
|
|
config BR2_GLIBC_VERSION_STRING
|
|
string
|
|
default "2.22" if BR2_GLIBC_VERSION_2_22
|
|
default "2.23" if BR2_GLIBC_VERSION_2_23
|