summaryrefslogtreecommitdiff
path: root/config/cc_gcc.in
blob: 2cad0bed55cc80b6ce3f43a5a1dfca0834ba75c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
# Compiler options

choice
    bool
    prompt "Final gcc version"

config CC_V_2_95_3
    bool
    prompt "2.95.3"
    depends on OBSOLETE

config CC_V_3_2_3
    bool
    prompt "3.2.3"
    depends on OBSOLETE

config CC_V_3_3
    bool
    prompt "3.3"
    depends on OBSOLETE

config CC_V_3_3_1
    bool
    prompt "3.3.1"
    depends on OBSOLETE

config CC_V_3_3_2
    bool
    prompt "3.3.2"
    depends on OBSOLETE

config CC_V_3_3_3
    bool
    prompt "3.3.3"
    depends on OBSOLETE

config CC_V_3_3_4
    bool
    prompt "3.3.4"
    depends on OBSOLETE

config CC_V_3_3_5
    bool
    prompt "3.3.5"
    depends on OBSOLETE

config CC_V_3_3_6
    bool
    prompt "3.3.6"

config CC_V_3_4_0
    bool
    prompt "3.4.0"
    depends on OBSOLETE

config CC_V_3_4_1
    bool
    prompt "3.4.1"
    depends on OBSOLETE

config CC_V_3_4_2
    bool
    prompt "3.4.2"
    depends on OBSOLETE

config CC_V_3_4_3
    bool
    prompt "3.4.3"
    depends on OBSOLETE

config CC_V_3_4_4
    bool
    prompt "3.4.4"
    depends on OBSOLETE

config CC_V_3_4_5
    bool
    prompt "3.4.5"
    depends on OBSOLETE

config CC_V_3_4_6
    bool
    prompt "3.4.6"

config CC_V_4_0_0
    bool
    prompt "4.0.0"

config CC_V_4_0_1
    bool
    prompt "4.0.1"

config CC_V_4_0_2
    bool
    prompt "4.0.2"

config CC_V_4_0_3
    bool
    prompt "4.0.3"

config CC_V_4_0_4
    bool
    prompt "4.0.4"

config CC_V_4_1_0
    bool
    prompt "4.1.0"

config CC_V_4_1_1
    bool
    prompt "4.1.1"

config CC_V_4_1_2
    bool
    prompt "4.1.2"

# CT_INSERT_VERSION_ABOVE
# Don't remove above line!
endchoice

config CC_VERSION
    string
    default "2.95.3" if CC_V_2_95_3
    default "3.2.3" if CC_V_3_2_3
    default "3.3" if CC_V_3_3
    default "3.3.1" if CC_V_3_3_1
    default "3.3.2" if CC_V_3_3_2
    default "3.3.3" if CC_V_3_3_3
    default "3.3.4" if CC_V_3_3_4
    default "3.3.5" if CC_V_3_3_5
    default "3.3.6" if CC_V_3_3_6
    default "3.4.0" if CC_V_3_4_0
    default "3.4.1" if CC_V_3_4_1
    default "3.4.2" if CC_V_3_4_2
    default "3.4.3" if CC_V_3_4_3
    default "3.4.4" if CC_V_3_4_4
    default "3.4.5" if CC_V_3_4_5
    default "3.4.6" if CC_V_3_4_6
    default "4.0.0" if CC_V_4_0_0
    default "4.0.1" if CC_V_4_0_1
    default "4.0.2" if CC_V_4_0_2
    default "4.0.3" if CC_V_4_0_3
    default "4.0.4" if CC_V_4_0_4
    default "4.1.0" if CC_V_4_1_0
    default "4.1.1" if CC_V_4_1_1
    default "4.1.2" if CC_V_4_1_2
# CT_INSERT_VERSION_STRING_ABOVE
# Don't remove above line!

config CC_CXA_ATEXIT
    bool
    prompt "__cxa_atexit"
    default "y"
    help
      If you get the missing symbol "__cxa_atexit" when building c++ programs,
      you might want to try disabling this option.

config CC_EXTRA_CONFIG
    string
    prompt "Final gcc extra config"
    default ""
    help
      Extra flags to pass onto ./configure when configuring gcc.