mirror of
https://git.busybox.net/buildroot.git
synced 2024-12-03 02:13:29 +08:00
glibc: add eglibc 2.19-svnr25243 and choice menu
Add glibc 2.19-svnr25243 and a choice menu to select between different eglibc versions. Blacklist it for PowerPC SPE since it doesn't even build. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
94df3e6d1b
commit
fb48cdee66
@ -1,3 +1,21 @@
|
||||
if BR2_TOOLCHAIN_BUILDROOT_EGLIBC
|
||||
|
||||
choice
|
||||
prompt "eglibc version"
|
||||
default BR2_EGLIBC_VERSION_2_18
|
||||
|
||||
config BR2_EGLIBC_VERSION_2_18
|
||||
bool "2.18-svnr23787"
|
||||
|
||||
config BR2_EGLIBC_VERSION_2_19
|
||||
bool "2.19-svnr25243"
|
||||
# Build breakage
|
||||
depends on !BR2_powerpc_SPE
|
||||
|
||||
endchoice
|
||||
|
||||
endif
|
||||
|
||||
if BR2_TOOLCHAIN_BUILDROOT_GLIBC
|
||||
|
||||
choice
|
||||
|
@ -5,7 +5,7 @@
|
||||
################################################################################
|
||||
|
||||
ifeq ($(BR2_TOOLCHAIN_BUILDROOT_EGLIBC),y)
|
||||
GLIBC_VERSION = 2.18-svnr23787
|
||||
GLIBC_VERSION = $(if $(BR2_EGLIBC_VERSION_2_19),2.19-svnr25243,2.18-svnr23787)
|
||||
GLIBC_SITE = http://downloads.yoctoproject.org/releases/eglibc/
|
||||
GLIBC_SOURCE = eglibc-$(GLIBC_VERSION).tar.bz2
|
||||
GLIBC_SRC_SUBDIR = libc
|
||||
|
Loading…
Reference in New Issue
Block a user