summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2024-12-16 09:08:55 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2024-12-16 09:08:55 +0100
commite493cb4364851345265b8b05948a669774037076 (patch)
treef7b6c2f8c5146b19d753b83f57e613d42440a981
parentee513edbdba9e263bb1dd28f94664c6e11c85159 (diff)
elf2flt: allow older binutils to be used
-rw-r--r--toolchain/elf2flt/Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/toolchain/elf2flt/Makefile b/toolchain/elf2flt/Makefile
index b3e7be6d2..e596c1a0d 100644
--- a/toolchain/elf2flt/Makefile
+++ b/toolchain/elf2flt/Makefile
@@ -30,6 +30,14 @@ ifeq ($(ADK_TOOLCHAIN_BINUTILS_2_39),y)
BINUTILS_VERSION:= 2.39
BFDLIB:= libbfd.a
endif
+ifeq ($(ADK_TOOLCHAIN_BINUTILS_2_38),y)
+BINUTILS_VERSION:= 2.38
+BFDLIB:= libbfd.a
+endif
+ifeq ($(ADK_TOOLCHAIN_BINUTILS_2_37),y)
+BINUTILS_VERSION:= 2.37
+BFDLIB:= libbfd.a
+endif
ifeq ($(ADK_TOOLCHAIN_BINUTILS_2_28),y)
BINUTILS_VERSION:= 2.28
BFDLIB:= libbfd.a