d354bfde17
This change switches ARC tools to the most recent arc-2016.03 version. ARC GNU tools of version arc-2016.03 bring some quite significant changes like: * Binutils v2.26+ (upstream commit id 202ac19 with additional ARC * patches) * GCC v4.8.5 * GDB 7.10 More about changes, improvements and fixes could be found here: https://github.com/foss-for-synopsys-dwc-arc-processors/toolchain/releases/tag/arc-2016.03 Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
32 lines
791 B
Text
32 lines
791 B
Text
# Choose binutils version.
|
|
|
|
choice
|
|
prompt "Binutils Version" if TOOLCHAINOPTS
|
|
default BINUTILS_USE_VERSION_2_25_1 if !arc
|
|
default BINUTILS_USE_VERSION_2_26_ARC if arc
|
|
help
|
|
Select the version of binutils you wish to use.
|
|
|
|
config BINUTILS_USE_VERSION_2_24_LINARO
|
|
depends on !arc
|
|
bool "Linaro binutils 2.24"
|
|
select BINUTILS_VERSION_2_24_LINARO
|
|
|
|
config BINUTILS_USE_VERSION_2_25_1
|
|
depends on !arc
|
|
bool "Binutils 2.25.1"
|
|
select BINUTILS_VERSION_2_25_1
|
|
|
|
config BINUTILS_USE_VERSION_2_26_ARC
|
|
depends on arc
|
|
bool "ARC binutils 2.26"
|
|
select BINUTILS_VERSION_2_26_ARC
|
|
|
|
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....
|