diff options
Diffstat (limited to 'package/glibc/Config.in')
-rw-r--r-- | package/glibc/Config.in | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/package/glibc/Config.in b/package/glibc/Config.in index aeb236c597..0565162433 100644 --- a/package/glibc/Config.in +++ b/package/glibc/Config.in @@ -32,14 +32,17 @@ config BR2_PACKAGE_GLIBC choice prompt "glibc version" - default BR2_GLIBC_VERSION_2_21 - -config BR2_GLIBC_VERSION_2_21 - bool "2.21" + default BR2_GLIBC_VERSION_2_22 config BR2_GLIBC_VERSION_2_22 bool "2.22" - depends on !BR2_sparc # broken + # 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 @@ -49,5 +52,5 @@ config BR2_GLIBC_VERSION_STRING string default "2.18-svnr23787" if BR2_EGLIBC_VERSION_2_18 default "2.19-svnr25243" if BR2_EGLIBC_VERSION_2_19 - default "2.21" if BR2_GLIBC_VERSION_2_21 default "2.22" if BR2_GLIBC_VERSION_2_22 + default "2.23" if BR2_GLIBC_VERSION_2_23 |