binutils 2.19 does not support avr32 yet
[openwrt.git] / toolchain / binutils / Config.in
1 # Choose binutils version.
2
3 choice
4         prompt "Binutils Version" if TOOLCHAINOPTS
5         default BINUTILS_VERSION_2_18 if TARGET_avr32
6         default BINUTILS_VERSION_2_17
7         help
8           Select the version of binutils you wish to use.
9
10         config BINUTILS_VERSION_2_17
11                 bool "binutils 2.17"
12
13         config BINUTILS_VERSION_2_18
14                 bool "binutils 2.18"
15
16         config BINUTILS_VERSION_2_19
17                 depends !TARGET_avr32
18                 bool "binutils 2.19"
19
20 endchoice
21
22 config EXTRA_BINUTILS_CONFIG_OPTIONS
23         string
24         prompt "Additional binutils options" if TOOLCHAINOPTS
25         default ""
26         help
27             Any additional binutils options you may want to include....
28
29 config BINUTILS_VERSION
30         string
31         prompt "Binutils Version" if (TOOLCHAINOPTS && NULL)
32         default "2.17"            if BINUTILS_VERSION_2_17
33         default "2.18"            if BINUTILS_VERSION_2_18
34         default "2.19"            if BINUTILS_VERSION_2_19
35         default "2.18"            if TARGET_avr32
36         default "2.17"