use binutils 2.18 for avr32, 2.17 is severely broken
[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 endchoice
17
18 config EXTRA_BINUTILS_CONFIG_OPTIONS
19         string
20         prompt "Additional binutils options" if TOOLCHAINOPTS
21         default ""
22         help
23             Any additional binutils options you may want to include....
24
25 config BINUTILS_VERSION
26         string
27         prompt "Binutils Version" if (TOOLCHAINOPTS && NULL)
28         default "2.17"            if BINUTILS_VERSION_2_17
29         default "2.18"            if BINUTILS_VERSION_2_18
30         default "2.18"            if TARGET_avr32
31         default "2.17"