diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2020-08-14 18:00:10 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2020-08-14 18:00:55 +0200 |
commit | dd5d40ff2ddc9b6ef0460ca15f8e3c5531b27db3 (patch) | |
tree | e76e69159913030ad9f2a411c15d42daf66738e8 | |
parent | 6134a835f4232c266172af77ad26afdf23ef584e (diff) |
glibc: update to 2.32
-rw-r--r-- | target/config/Config.in.libc | 6 | ||||
-rw-r--r-- | toolchain/glibc/Makefile.inc | 12 |
2 files changed, 9 insertions, 9 deletions
diff --git a/target/config/Config.in.libc b/target/config/Config.in.libc index 0add0ef5b..7b0b39860 100644 --- a/target/config/Config.in.libc +++ b/target/config/Config.in.libc @@ -153,8 +153,8 @@ config ADK_TARGET_LIB_UCLIBC_NG_GIT bool "git" depends on ADK_TARGET_LIB_UCLIBC_NG && ADK_EXPERIMENTAL -config ADK_TARGET_LIB_GLIBC_2_31 - bool "2.31" +config ADK_TARGET_LIB_GLIBC_2_32 + bool "2.32" depends on ADK_TARGET_LIB_GLIBC config ADK_TARGET_LIB_GLIBC_GIT @@ -202,7 +202,7 @@ config ADK_LIBC_VERSION string default "1.0.34" if ADK_TARGET_LIB_UCLIBC_NG_1_0_34 default "1.2.0" if ADK_TARGET_LIB_MUSL_1_2_0 - default "2.31" if ADK_TARGET_LIB_GLIBC_2_31 + default "2.32" if ADK_TARGET_LIB_GLIBC_2_32 default "3.1.0" if ADK_TARGET_LIB_NEWLIB_3_1_0 default "git" if ADK_TARGET_LIB_UCLIBC_NG_GIT || \ ADK_TARGET_LIB_MUSL_GIT || \ diff --git a/toolchain/glibc/Makefile.inc b/toolchain/glibc/Makefile.inc index 0f0776bef..db1d066c0 100644 --- a/toolchain/glibc/Makefile.inc +++ b/toolchain/glibc/Makefile.inc @@ -3,16 +3,16 @@ PKG_NAME:= glibc ifeq ($(ADK_LIBC_VERSION),git) -PKG_VERSION:= 2.31.90 -PKG_GLIBCVER:= 2.31.9000 +PKG_VERSION:= 2.32.90 +PKG_GLIBCVER:= 2.32.9000 PKG_SITES:= git://sourceware.org/git/glibc.git PKG_RELEASE:= 1 endif -ifeq ($(ADK_TARGET_LIB_GLIBC_2_31),y) -PKG_VERSION:= 2.31 -PKG_GLIBCVER:= 2.31 +ifeq ($(ADK_TARGET_LIB_GLIBC_2_32),y) +PKG_VERSION:= 2.32 +PKG_GLIBCVER:= 2.32 PKG_RELEASE:= 1 PKG_SITES:= ${MASTER_SITE_GNU:=glibc/} -PKG_HASH:= 9246fe44f68feeec8c666bb87973d590ce0137cca145df014c72ec95be9ffd17 +PKG_HASH:= 1627ea54f5a1a8467032563393e0901077626dc66f37f10ee6363bb722222836 endif DISTFILES:= $(PKG_NAME)-$(PKG_VERSION).tar.xz |