1# Choose binutils version.
2
3choice
4	prompt "Binutils Version" if TOOLCHAINOPTS
5	default BINUTILS_USE_VERSION_2_25_1 if !arc
6	default BINUTILS_USE_VERSION_2_26_ARC if arc
7	help
8	  Select the version of binutils you wish to use.
9
10	config BINUTILS_USE_VERSION_2_24_LINARO
11		depends on !arc
12		bool "Linaro binutils 2.24"
13		select BINUTILS_VERSION_2_24_LINARO
14
15	config BINUTILS_USE_VERSION_2_25_1
16		depends on !arc
17		bool "Binutils 2.25.1"
18		select BINUTILS_VERSION_2_25_1
19
20	config BINUTILS_USE_VERSION_2_26_1
21		depends on !arc
22		bool "Binutils 2.26.1"
23		select BINUTILS_VERSION_2_26_1
24
25	config BINUTILS_USE_VERSION_2_26_ARC
26		depends on arc
27		bool "ARC binutils 2.26"
28		select BINUTILS_VERSION_2_26_ARC
29
30endchoice
31
32config EXTRA_BINUTILS_CONFIG_OPTIONS
33	string
34	prompt "Additional binutils configure options" if TOOLCHAINOPTS
35	default ""
36	help
37	    Any additional binutils options you may want to include....
38