mirror of
https://github.com/openwrt/openwrt.git
synced 2026-06-17 19:11:38 +04:00
9b3ee8218b
Release Notes: - https://sourceware.org/pipermail/binutils/2026-February/148149.html OpenWrt changes: - adjust patch manually: - 500-Change-default-emulation-for-mips64-linux.patch - rearrange configure options and variables - provide variables for both configure and build stages (binutils has more than one ./configure script in source tree) Signed-off-by: Konstantin Demin <rockdrilla@gmail.com> Link: https://github.com/openwrt/openwrt/pull/21997 Signed-off-by: Nick Hainke <vincent@systemli.org>
28 lines
644 B
Plaintext
28 lines
644 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
|
|
|
|
config BINUTILS_USE_VERSION_2_46
|
|
bool "Binutils 2.46"
|
|
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....
|