diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2020-09-17 07:08:53 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2020-09-17 07:08:53 +0200 |
commit | ec78eb40b2263eeee4480c2931d0f9b504b324db (patch) | |
tree | 9a5d8af9765cc7c2fe3e9fcd808f3a10a17e2b4e /toolchain/elf2flt | |
parent | cb21a6af17142ce7fdceaeb3ef35cfd5fba69109 (diff) |
elf2flt: add binutils 2.34 case
Diffstat (limited to 'toolchain/elf2flt')
-rw-r--r-- | toolchain/elf2flt/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/toolchain/elf2flt/Makefile b/toolchain/elf2flt/Makefile index e1fa25b29..77552fe1e 100644 --- a/toolchain/elf2flt/Makefile +++ b/toolchain/elf2flt/Makefile @@ -12,6 +12,9 @@ endif ifeq ($(ADK_TOOLCHAIN_BINUTILS_2_35),y) BINUTILS_VERSION:= 2.35 endif +ifeq ($(ADK_TOOLCHAIN_BINUTILS_2_34),y) +BINUTILS_VERSION:= 2.34 +endif ifeq ($(ADK_TOOLCHAIN_BINUTILS_2_29),y) BINUTILS_VERSION:= 2.29.1 endif |