Fixes: 82f26df15c ("toolchain: binutils: change default to 2.46")
Signed-off-by: Shiji Yang <yangshiji66@outlook.com>
Link: https://github.com/openwrt/openwrt/pull/23952
Signed-off-by: Jonas Jelonek <jelonek.jonas@gmail.com>
28 lines
646 B
Plaintext
28 lines
646 B
Plaintext
# Choose binutils version.
|
|
|
|
choice
|
|
prompt "Binutils Version" if TOOLCHAINOPTS
|
|
default BINUTILS_USE_VERSION_2_46
|
|
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
|
|
|
|
config BINUTILS_USE_VERSION_2_46
|
|
bool "Binutils 2.46.1"
|
|
select BINUTILS_VERSION_2_46
|
|
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....
|