Browse Source

binutils: add 2.41 for testing

Waldemar Brodkorb 9 months ago
parent
commit
c216be4a49
3 changed files with 15 additions and 0 deletions
  1. 5 0
      target/config/Config.in.binutils
  2. 7 0
      toolchain/binutils/Makefile.inc
  3. 3 0
      toolchain/elf2flt/Makefile

+ 5 - 0
target/config/Config.in.binutils

@@ -14,6 +14,11 @@ config ADK_TOOLCHAIN_BINUTILS_GIT
 	depends on !ADK_TARGET_ARCH_AVR32
 	depends on !ADK_TARGET_ARCH_KVX
 
+config ADK_TOOLCHAIN_BINUTILS_2_41
+	bool "2.41"
+	depends on !ADK_TARGET_ARCH_AVR32
+	depends on !ADK_TARGET_ARCH_KVX
+
 config ADK_TOOLCHAIN_BINUTILS_2_40
 	bool "2.40"
 	depends on !ADK_TARGET_ARCH_AVR32

+ 7 - 0
toolchain/binutils/Makefile.inc

@@ -2,6 +2,13 @@
 # material, please see the LICENCE file in the top-level directory.
 
 PKG_NAME:=		binutils
+ifeq ($(ADK_TOOLCHAIN_BINUTILS_2_41),y)
+PKG_VERSION:=		2.41
+PKG_RELEASE:=		1
+PKG_HASH:=		ae9a5789e23459e59606e6714723f2d3ffc31c03174191ef0d015bdf06007450
+PKG_SITES:=		${MASTER_SITE_GNU:=binutils/}
+DISTFILES:=		${PKG_NAME}-${PKG_VERSION}.tar.xz
+endif
 ifeq ($(ADK_TOOLCHAIN_BINUTILS_2_40),y)
 PKG_VERSION:=		2.40
 PKG_RELEASE:=		1

+ 3 - 0
toolchain/elf2flt/Makefile

@@ -9,6 +9,9 @@ include $(ADK_TOPDIR)/mk/buildhlp.mk
 ifeq ($(ADK_TOOLCHAIN_BINUTILS_GIT),y)
 BINUTILS_VERSION:=	git
 endif
+ifeq ($(ADK_TOOLCHAIN_BINUTILS_2_41),y)
+BINUTILS_VERSION:=	2.41
+endif
 ifeq ($(ADK_TOOLCHAIN_BINUTILS_2_40),y)
 BINUTILS_VERSION:=	2.40
 endif