@@ -83,12 +83,12 @@ To run the image,
83
83
A number of these images take quite a long time to compile as they're building
84
84
whole gcc toolchains to do cross builds with. Much of this is relatively
85
85
self-explanatory but some images use [crosstool-ng] which isn't quite as self
86
- explanatory. Below is a description of where these `*.config ` files come form,
86
+ explanatory. Below is a description of where these `*.defconfig ` files come form,
87
87
how to generate them, and how the existing ones were generated.
88
88
89
89
[crosstool-ng]: https://github.com/crosstool-ng/crosstool-ng
90
90
91
- ### Generating a `.config ` file
91
+ ### Generating a `.defconfig ` file
92
92
93
93
**NOTE:** Existing Dockerfiles can also be a good guide for the process and order
94
94
of script execution.
@@ -100,14 +100,14 @@ next two steps.
100
100
these steps are outside the container:
101
101
102
102
```
103
- # Note: We use ubuntu:16 .04 because that's the "base" of linux-cross Docker
103
+ # Note: We use ubuntu:22 .04 because that's the "base" of linux-cross Docker
104
104
# image, or simply run ./src/ci/docker/run.sh once, which will download the correct
105
105
# one and you can check it out with ` docker images `
106
- $ docker run -it ubuntu:16 .04 bash
106
+ $ docker run -it ubuntu:22 .04 bash
107
107
# in another terminal:
108
108
$ docker ps
109
109
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
110
- cfbec05ed730 ubuntu:16 .04 "bash" 16 seconds ago Up 15 seconds drunk_murdock
110
+ cfbec05ed730 ubuntu:22 .04 "bash" 16 seconds ago Up 15 seconds drunk_murdock
111
111
$ docker cp src/ci/docker/scripts drunk_murdock:/tmp/
112
112
```
113
113
@@ -127,7 +127,7 @@ $ bash ./crosstool-ng.sh
127
127
present. Otherwise one can use the TUI to load any config-file.
128
128
129
129
```
130
- $ docker cp arm-linux-gnueabi.config drunk_murdock:/tmp/.config
130
+ $ docker cp arm-linux-gnueabi.defconfig drunk_murdock:/tmp/.config
131
131
```
132
132
133
133
- Now, inside the container run the following command to configure the
@@ -136,66 +136,73 @@ $ docker cp arm-linux-gnueabi.config drunk_murdock:/tmp/.config
136
136
137
137
```
138
138
$ cd /tmp/
139
+ $ ct-ng olddefconfig
139
140
$ ct-ng menuconfig
141
+ $ ct-ng savedefconfig
140
142
```
141
143
142
- - Finally, we retrieve the `.config ` file from the container and give it a
144
+ - Finally, we retrieve the `defconfig ` file from the container and give it a
143
145
meaningful name. This is done outside the container.
144
146
145
147
```
146
- $ docker cp drunk_murdock:/tmp/.config arm-linux-gnueabi.config
148
+ $ docker cp drunk_murdock:/tmp/defconfig arm-linux-gnueabi.defconfig
147
149
```
148
150
149
151
- Now you can shutdown the container or repeat the two last steps to generate a
150
- new `.config ` file.
152
+ new `.defconfig ` file.
151
153
152
154
### Toolchain configuration
153
155
154
156
Changes on top of the default toolchain configuration used to generate the
155
- `.config ` files in this directory. The changes are formatted as follows:
157
+ `.defconfig ` files in this directory. The changes are formatted as follows:
156
158
157
159
```
158
160
$category > $option = $value -- $comment
159
161
```
160
162
161
- ### `arm-linux-gnueabi.config `
163
+ ### `arm-linux-gnueabi.defconfig `
162
164
163
165
For targets: `arm-unknown-linux-gnueabi`
164
166
165
167
- Path and misc options > Prefix directory = /x-tools/${CT\_TARGET}
166
- - Path and misc options > Patches origin = Bundled only
168
+ - Path and misc options > Use a mirror = ENABLE
169
+ - Path and misc options > Base URL = https://ci-mirrors.rust-lang.org/rustc
167
170
- Target options > Target Architecture = arm
168
171
- Target options > Architecture level = armv6 -- (+)
169
172
- Target options > Floating point = software (no FPU) -- (\*)
170
173
- Operating System > Target OS = linux
171
174
- Operating System > Linux kernel version = 3.2.101
175
+ - Binary utilities > Version of binutils = 2.32
172
176
- C-library > glibc version = 2.17.0
173
- - C compiler > gcc version = 8.3 .0
177
+ - C compiler > gcc version = 8.5 .0
174
178
- C compiler > C++ = ENABLE -- to cross compile LLVM
175
179
176
- ### `arm-linux-gnueabihf.config `
180
+ ### `arm-linux-gnueabihf.defconfig `
177
181
178
182
For targets: `arm-unknown-linux-gnueabihf`
179
183
180
184
- Path and misc options > Prefix directory = /x-tools/${CT\_TARGET}
181
- - Path and misc options > Patches origin = Bundled only
185
+ - Path and misc options > Use a mirror = ENABLE
186
+ - Path and misc options > Base URL = https://ci-mirrors.rust-lang.org/rustc
182
187
- Target options > Target Architecture = arm
183
188
- Target options > Architecture level = armv6 -- (+)
184
189
- Target options > Use specific FPU = vfp -- (+)
185
190
- Target options > Floating point = hardware (FPU) -- (\*)
186
191
- Target options > Default instruction set mode = arm -- (+)
187
192
- Operating System > Target OS = linux
188
193
- Operating System > Linux kernel version = 3.2.101
194
+ - Binary utilities > Version of binutils = 2.32
189
195
- C-library > glibc version = 2.17.0
190
- - C compiler > gcc version = 8.3 .0
196
+ - C compiler > gcc version = 8.5 .0
191
197
- C compiler > C++ = ENABLE -- to cross compile LLVM
192
198
193
- ### `armv7-linux-gnueabihf.config `
199
+ ### `armv7-linux-gnueabihf.defconfig `
194
200
195
201
For targets: `armv7-unknown-linux-gnueabihf`
196
202
197
203
- Path and misc options > Prefix directory = /x-tools/${CT\_TARGET}
198
- - Path and misc options > Patches origin = Bundled only
204
+ - Path and misc options > Use a mirror = ENABLE
205
+ - Path and misc options > Base URL = https://ci-mirrors.rust-lang.org/rustc
199
206
- Target options > Target Architecture = arm
200
207
- Target options > Suffix to the arch-part = v7
201
208
- Target options > Architecture level = armv7-a -- (+)
@@ -204,8 +211,9 @@ For targets: `armv7-unknown-linux-gnueabihf`
204
211
- Target options > Default instruction set mode = thumb -- (\*)
205
212
- Operating System > Target OS = linux
206
213
- Operating System > Linux kernel version = 3.2.101
214
+ - Binary utilities > Version of binutils = 2.32
207
215
- C-library > glibc version = 2.17.0
208
- - C compiler > gcc version = 8.3 .0
216
+ - C compiler > gcc version = 8.5 .0
209
217
- C compiler > C++ = ENABLE -- to cross compile LLVM
210
218
211
219
(\*) These options have been selected to match the configuration of the arm
@@ -214,7 +222,7 @@ For targets: `armv7-unknown-linux-gnueabihf`
214
222
libraries like jemalloc. See the mk/cfg/arm(v7)-unknown-linux-gnueabi{,hf}.mk
215
223
file in Rust's source code.
216
224
217
- ### `aarch64-linux-gnu.config `
225
+ ### `aarch64-linux-gnu.defconfig `
218
226
219
227
For targets: `aarch64-unknown-linux-gnu`
220
228
@@ -225,17 +233,16 @@ For targets: `aarch64-unknown-linux-gnu`
225
233
- Target options > Bitness = 64-bit
226
234
- Operating System > Target OS = linux
227
235
- Operating System > Linux kernel version = 4.1.49
228
- - Binary utilities > Version of binutils = 2.32
236
+ - Binary utilities > Version of binutils = 2.29.1
229
237
- C-library > glibc version = 2.17 -- aarch64 support was introduced in this version
230
- - C compiler > gcc version = 8.3 .0
238
+ - C compiler > gcc version = 8.5 .0
231
239
- C compiler > C++ = ENABLE -- to cross compile LLVM
232
240
233
- ### `i586-linux-gnu.config `
241
+ ### `i586-linux-gnu.defconfig `
234
242
235
243
For targets: `i586-unknown-linux-gnu`
236
244
237
245
- Path and misc options > Prefix directory = /x-tools/${CT\_TARGET}
238
- - Path and misc options > Patches origin = Bundled only
239
246
- Target options > Target Architecture = x86
240
247
- Target options > Architecture level = i586
241
248
- Target options > Target CFLAGS = -Wa,-mrelax-relocations=no
@@ -244,13 +251,13 @@ For targets: `i586-unknown-linux-gnu`
244
251
- Binary utilities > Version of binutils = 2.32
245
252
- Binary utilities > binutils extra config = --enable-compressed-debug-sections=none -- (\*)
246
253
- C-library > glibc version = 2.17.0
247
- - C compiler > gcc version = 8.3 .0
254
+ - C compiler > gcc version = 8.5 .0
248
255
- C compiler > C++ = ENABLE
249
256
250
257
(\*) Compressed debug is enabled by default for gas (assembly) on Linux/x86 targets,
251
258
but that makes our `compiler_builtins` incompatible with binutils < 2.32.
252
259
253
- ### `mips-linux-gnu.config `
260
+ ### `mips-linux-gnu.defconfig `
254
261
255
262
For targets: `mips-unknown-linux-gnu`
256
263
@@ -265,14 +272,14 @@ For targets: `mips-unknown-linux-gnu`
265
272
- Target options > Bitness = 32-bit
266
273
- Target options > Architecture level = mips32r2
267
274
- Operating System > Target OS = linux
268
- - Operating System > Linux kernel version = 4.4.174
275
+ - Operating System > Linux kernel version = 4.4.302
269
276
- Binary utilities > Version of binutils = 2.32
270
277
- C-library > glibc version = 2.23
271
- - C compiler > gcc version = 8.3 .0
278
+ - C compiler > gcc version = 8.5 .0
272
279
- C compiler > gcc extra config = --with-fp-32=xx --with-odd-spreg-32=no
273
280
- C compiler > C++ = ENABLE -- to cross compile LLVM
274
281
275
- ### `mipsel-linux-gnu.config `
282
+ ### `mipsel-linux-gnu.defconfig `
276
283
277
284
For targets: `mipsel-unknown-linux-gnu`
278
285
@@ -287,14 +294,14 @@ For targets: `mipsel-unknown-linux-gnu`
287
294
- Target options > Bitness = 32-bit
288
295
- Target options > Architecture level = mips32r2
289
296
- Operating System > Target OS = linux
290
- - Operating System > Linux kernel version = 4.4.174
297
+ - Operating System > Linux kernel version = 4.4.302
291
298
- Binary utilities > Version of binutils = 2.32
292
299
- C-library > glibc version = 2.23
293
- - C compiler > gcc version = 8.3 .0
300
+ - C compiler > gcc version = 8.5 .0
294
301
- C compiler > gcc extra config = --with-fp-32=xx --with-odd-spreg-32=no
295
302
- C compiler > C++ = ENABLE -- to cross compile LLVM
296
303
297
- ### `mips64-linux-gnu.config `
304
+ ### `mips64-linux-gnu.defconfig `
298
305
299
306
For targets: `mips64-unknown-linux-gnuabi64`
300
307
@@ -309,13 +316,13 @@ For targets: `mips64-unknown-linux-gnuabi64`
309
316
- Target options > Bitness = 64-bit
310
317
- Target options > Architecture level = mips64r2
311
318
- Operating System > Target OS = linux
312
- - Operating System > Linux kernel version = 4.4.174
319
+ - Operating System > Linux kernel version = 4.4.302
313
320
- Binary utilities > Version of binutils = 2.32
314
321
- C-library > glibc version = 2.23
315
- - C compiler > gcc version = 8.3 .0
322
+ - C compiler > gcc version = 8.5 .0
316
323
- C compiler > C++ = ENABLE -- to cross compile LLVM
317
324
318
- ### `mips64el-linux-gnu.config `
325
+ ### `mips64el-linux-gnu.defconfig `
319
326
320
327
For targets: `mips64el-unknown-linux-gnuabi64`
321
328
@@ -330,13 +337,13 @@ For targets: `mips64el-unknown-linux-gnuabi64`
330
337
- Target options > Bitness = 64-bit
331
338
- Target options > Architecture level = mips64r2
332
339
- Operating System > Target OS = linux
333
- - Operating System > Linux kernel version = 4.4.174
340
+ - Operating System > Linux kernel version = 4.4.302
334
341
- Binary utilities > Version of binutils = 2.32
335
342
- C-library > glibc version = 2.23
336
- - C compiler > gcc version = 8.3 .0
343
+ - C compiler > gcc version = 8.5 .0
337
344
- C compiler > C++ = ENABLE -- to cross compile LLVM
338
345
339
- ### `powerpc-linux-gnu.config `
346
+ ### `powerpc-linux-gnu.defconfig `
340
347
341
348
For targets: `powerpc-unknown-linux-gnu`
342
349
@@ -349,10 +356,10 @@ For targets: `powerpc-unknown-linux-gnu`
349
356
- Operating System > Linux kernel version = 3.2.101
350
357
- Binary utilities > Version of binutils = 2.30
351
358
- C-library > glibc version = 2.17 -- ~RHEL7 glibc
352
- - C compiler > gcc version = 8.3 .0
359
+ - C compiler > gcc version = 8.5 .0
353
360
- C compiler > C++ = ENABLE -- to cross compile LLVM
354
361
355
- ### `powerpc64-linux-gnu.config `
362
+ ### `powerpc64-linux-gnu.defconfig `
356
363
357
364
For targets: `powerpc64-unknown-linux-gnu`
358
365
@@ -367,12 +374,28 @@ For targets: `powerpc64-unknown-linux-gnu`
367
374
- Operating System > Linux kernel version = 3.2.101
368
375
- Binary utilities > Version of binutils = 2.32
369
376
- C-library > glibc version = 2.17 -- ~RHEL7 glibc
370
- - C compiler > gcc version = 8.3 .0
377
+ - C compiler > gcc version = 8.5 .0
371
378
- C compiler > C++ = ENABLE -- to cross compile LLVM
372
379
373
380
(+) These CPU options match the configuration of the toolchains in RHEL6.
374
381
375
- ### `s390x-linux-gnu.config`
382
+ ### `riscv64-unknown-linux-gnu.defconfig`
383
+
384
+ For targets: `riscv64-unknown-linux-gnu`
385
+
386
+ - Path and misc options > Prefix directory = /x-tools/${CT\_TARGET}
387
+ - Path and misc options > Use a mirror = ENABLE
388
+ - Path and misc options > Base URL = https://ci-mirrors.rust-lang.org/rustc
389
+ - Target options > Target Architecture = riscv
390
+ - Target options > Bitness = 64-bit
391
+ - Operating System > Target OS = linux
392
+ - Operating System > Linux kernel version = 4.20.17
393
+ - Binary utilities > Version of binutils = 2.32
394
+ - C-library > glibc version = 2.29
395
+ - C compiler > gcc version = 8.5.0
396
+ - C compiler > C++ = ENABLE -- to cross compile LLVM
397
+
398
+ ### `s390x-linux-gnu.defconfig`
376
399
377
400
For targets: `s390x-unknown-linux-gnu`
378
401
@@ -385,6 +408,6 @@ For targets: `s390x-unknown-linux-gnu`
385
408
- Operating System > Linux kernel version = 3.2.101
386
409
- Binary utilities > Version of binutils = 2.32
387
410
- C-library > glibc version = 2.17 -- ~RHEL7 glibc
388
- - C compiler > gcc version = 8.3 .0
411
+ - C compiler > gcc version = 8.5 .0
389
412
- C compiler > gcc extra config = --with-arch=z10 -- LLVM's minimum support
390
413
- C compiler > C++ = ENABLE -- to cross compile LLVM
0 commit comments