toolchain/gcc: remove remaining references to gcc-3.4.6
[openwrt.git] / toolchain / gcc / Config.version
1 config GCC_VERSION
2         string
3         default "4.1.2"     if GCC_VERSION_4_1_2
4         default "4.2.4"     if GCC_VERSION_4_2_4
5         default "4.3.3"     if GCC_VERSION_4_3_3
6         default "4.3.3+cs"  if GCC_VERSION_4_3_3_CS
7         default "4.3.4"     if GCC_VERSION_4_3_4
8         default "4.3.5"     if GCC_VERSION_4_3_5
9         default "4.4.1"     if GCC_VERSION_4_4_1
10         default "4.4.1+cs"  if GCC_VERSION_4_4_1_CS
11         default "4.4.2"     if GCC_VERSION_4_4_2
12         default "4.4.3"     if GCC_VERSION_4_4_3
13         default "4.4.4"     if GCC_VERSION_4_4_4
14         default "4.5.0"     if GCC_VERSION_4_5_0
15         default "4.5.1"     if GCC_VERSION_4_5_1
16         default "4.4.3+cs"  if GCC_VERSION_4_4_3_CS
17         default "llvm"      if GCC_VERSION_LLVM
18         default "4.1.2"
19
20 config GCC_VERSION_4
21         bool
22         default y       if GCC_VERSION_4_1
23         default y       if GCC_VERSION_4_2
24         default y       if GCC_VERSION_4_3
25         default y       if GCC_VERSION_4_4
26         default y       if GCC_VERSION_4_5
27
28 config GCC_VERSION_4_1
29         bool
30         default y       if GCC_VERSION_4_1_2
31
32 config GCC_VERSION_4_2
33         bool
34         default y       if GCC_VERSION_4_2_4
35         default y       if GCC_VERSION_LLVM
36
37 config GCC_VERSION_4_3
38         bool
39         default y       if GCC_VERSION_4_3_3
40         default y       if GCC_VERSION_4_3_3_CS
41         default y       if GCC_VERSION_4_3_4
42         default y       if GCC_VERSION_4_3_5
43
44 config GCC_VERSION_4_4
45         bool
46         default y       if GCC_VERSION_4_4_1
47         default y       if GCC_VERSION_4_4_1_CS
48         default y       if GCC_VERSION_4_4_2
49         default y       if GCC_VERSION_4_4_3
50         default y       if GCC_VERSION_4_4_3_CS
51         default y       if GCC_VERSION_4_4_4
52
53 config GCC_VERSION_4_5
54         bool
55         default y       if GCC_VERSION_4_5_0
56         default y       if GCC_VERSION_4_5_1
57
58 if !TOOLCHAINOPTS
59         config GCC_VERSION_4_2_4
60                 default y if avr32
61
62         config GCC_VERSION_4_3_3
63                 default y if powerpc64
64                 default y if TARGET_etrax
65                 default y if TARGET_coldfire
66
67         config GCC_VERSION_4_3_4
68                 default y if TARGET_gemini
69
70         config GCC_VERSION_4_3_3_CS
71                 default y if (mips || mipsel) && !(TARGET_octeon || TARGET_sibyte)
72                 default y if (arm || armeb) && !TARGET_gemini
73
74         config GCC_VERSION_4_4_1
75                 default y if ubicom32
76
77         config GCC_VERSION_4_4_3
78                 default y if powerpc
79
80         config GCC_VERSION_4_4_4
81                 default y if (TARGET_octeon || TARGET_sibyte || TARGET_omap35xx)
82
83 endif