From Anatol Pomozov Taken from Arch Linux arm-none-eabi-gcc package. Modified version of ARM patch https://gcc.gnu.org/ml/gcc-patches/2012-05/msg00083/enable-with-multilib-list-for-arm.patch This patch enables the use of the "--with-multilib-list" flag, when configuring GCC 6.2. It makes GCC 6 compatible with the configure flags used in the "gcc-arm-none-eabi-4.9" package. diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 4ab7405..6e1ea2c 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -535,6 +535,7 @@ lang_opt_files=@lang_opt_files@ $(srcdir)/c-family/c.opt $(srcdir)/common.opt lang_specs_files=@lang_specs_files@ lang_tree_files=@lang_tree_files@ target_cpu_default=@target_cpu_default@ +with_multilib_list=@with_multilib_list@ OBJC_BOEHM_GC=@objc_boehm_gc@ extra_modes_file=@extra_modes_file@ extra_opt_files=@extra_opt_files@ diff --git a/gcc/config.gcc b/gcc/config.gcc index cb08a5c..7bded02 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -1072,7 +10
aboutsummaryrefslogtreecommitdiff
path: root/etc/historical-authorizations
blob: 429054c9a5f4e7bae88f9515075765257a7fd5d1 (about) (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