mirror of
https://github.com/openwrt/openwrt.git
synced 2026-06-17 14:50:15 +04:00
a368faf2e1
Oldest supported release is 2.44 for upcoming release (25.12). Signed-off-by: Konstantin Demin <rockdrilla@gmail.com> Link: https://github.com/openwrt/openwrt/pull/21997 Signed-off-by: Nick Hainke <vincent@systemli.org>
24 lines
555 B
Plaintext
24 lines
555 B
Plaintext
# Choose binutils version.
|
|
|
|
choice
|
|
prompt "Binutils Version" if TOOLCHAINOPTS
|
|
default BINUTILS_USE_VERSION_2_44
|
|
help
|
|
Select the version of binutils you wish to use.
|
|
|
|
config BINUTILS_USE_VERSION_2_44
|
|
bool "Binutils 2.44"
|
|
select BINUTILS_VERSION_2_44
|
|
|
|
config BINUTILS_USE_VERSION_2_45
|
|
bool "Binutils 2.45.1"
|
|
select BINUTILS_VERSION_2_45
|
|
endchoice
|
|
|
|
config EXTRA_BINUTILS_CONFIG_OPTIONS
|
|
string
|
|
prompt "Additional binutils configure options" if TOOLCHAINOPTS
|
|
default ""
|
|
help
|
|
Any additional binutils options you may want to include....
|