-
Notifications
You must be signed in to change notification settings - Fork 13.8k
Commit 70e2b4a
Auto merge of #139244 - jieyouxu:exp/auto-cross-run-make, r=Kobzol
Enable automatic cross-compilation in run-make tests
Supersedes #138066.
Blocker for #141856.
Based on #138066 plus `rustdoc()` cross-compile changes.
### Summary
This PR automatically specifies `--target` to `rustc()` and `rustdoc()` to have `rustc`/`rustdoc` produce cross-compiled artifacts in run-make tests by default, unless:
- `//@ ignore-cross-compile` is used, or
- `bare_{rustc,rustdoc}` are used, or
- Explicit `.target()` is specified, which overrides the default cross-compile target.
Some tests are necessarily modified:
- Tests that have `.target(target())` have that incantation removed (since this is now automatically the default).
- Some tests have `//@ needs-target-std`, but are a necessary-but-insufficient condition, and are changed to `//@ ignore-cross-compile` instead as host-only tests.
- A few tests received `//@ ignore-musl` that fail against `x86_64-unknown-linux-musl` because of inability to find `-lunwind`. AFAICT, they don't *need* to test cross-compiled artifacts.
- Some tests are constrained to host-only for now, because the effort to make them pass on cross-compile does not seem worth the complexity, and it's not really *meaningfully* improving test coverage.
try-job: dist-various-1File tree
72 files changed
+206
-112
lines changed- src/tools/run-make-support/src
- external_deps
- tests/run-make
- allow-warnings-cmdline-stability
- apple-deployment-target
- apple-sdk-version
- crate-circular-deps-link
- doctests-merge
- doctests-runtool
- embed-metadata
- embed-source-dwarf
- emit-stack-sizes
- env-dep-info
- exit-code
- export-executable-symbols
- export
- disambiguator
- extern-opt
- simple
- extern-diff-internal-name
- extern-flag-fun
- extern-multiple-copies2
- extern-multiple-copies
- ice-dep-cannot-find-dep
- include-all-symbols-linking
- incr-prev-body-beyond-eof
- incr-test-moved-file
- intrinsic-unreachable
- invalid-so
- issue-125484-used-dependencies
- json-error-no-offset
- link-args-order
- link-dedup
- linker-warning
- moved-src-dir-fingerprint-ice
- mte-ffi
- naked-symbol-visibility
- native-lib-alt-naming
- native-link-modifier-verbatim-linker
- no-builtins-attribute
- no-builtins-lto
- non-unicode-in-incremental-dir
- proc-macro-three-crates
- relro-levels
- repr128-dwarf
- reproducible-build-2
- rlib-format-packed-bundled-libs-2
- rustc-macro-dep-files
- rustdoc-default-output
- rustdoc-dep-info
- rustdoc-determinism
- rustdoc-error-lines
- rustdoc-io-error
- rustdoc-map-file
- rustdoc-output-path
- rustdoc-output-stdout
- rustdoc-test-args
- rustdoc-themes
- rustdoc-verify-output-files
- rustdoc-with-out-dir-option
- rustdoc-with-output-option
- static-pie
- staticlib-thin-archive
- stdin-rustc
- stdin-rustdoc
- symbol-visibility
- sysroot-crates-are-unstable
- track-path-dep-info
- used
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
72 files changed
+206
-112
lines changedOriginal file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
6 | 6 |
| |
7 | 7 |
| |
8 | 8 |
| |
9 | - | ||
9 | + | ||
10 | 10 |
| |
11 | 11 |
| |
12 | 12 |
| |
| |||
27 | 27 |
| |
28 | 28 |
| |
29 | 29 |
| |
30 | + | ||
30 | 31 |
| |
31 | 32 |
| |
32 | - | ||
33 | + | ||
34 | + | ||
35 | + | ||
36 | + | ||
37 | + | ||
38 | + | ||
33 | 39 |
| |
34 | 40 |
| |
35 | 41 |
| |
| |||
46 | 52 |
| |
47 | 53 |
| |
48 | 54 |
| |
49 | - | ||
55 | + | ||
56 | + | ||
50 | 57 |
| |
51 | 58 |
| |
52 | 59 |
| |
53 | 60 |
| |
54 | - | ||
61 | + | ||
62 | + | ||
63 | + | ||
55 | 64 |
| |
56 | 65 |
| |
57 | 66 |
| |
58 | 67 |
| |
59 | 68 |
| |
60 | 69 |
| |
61 | - | ||
70 | + | ||
62 | 71 |
| |
63 | 72 |
| |
64 | 73 |
| |
| |||
234 | 243 |
| |
235 | 244 |
| |
236 | 245 |
| |
237 | - | ||
238 | - | ||
246 | + | ||
247 | + | ||
248 | + | ||
239 | 249 |
| |
240 | 250 |
| |
241 | 251 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
3 | 3 |
| |
4 | 4 |
| |
5 | 5 |
| |
6 | + | ||
6 | 7 |
| |
7 | 8 |
| |
8 | - | ||
9 | + | ||
10 | + | ||
11 | + | ||
9 | 12 |
| |
10 | 13 |
| |
11 | 14 |
| |
12 | 15 |
| |
13 | 16 |
| |
17 | + | ||
18 | + | ||
19 | + | ||
20 | + | ||
21 | + | ||
22 | + | ||
14 | 23 |
| |
15 | 24 |
| |
16 | 25 |
| |
17 | 26 |
| |
27 | + | ||
18 | 28 |
| |
19 | 29 |
| |
20 | - | ||
30 | + | ||
31 | + | ||
32 | + | ||
33 | + | ||
34 | + | ||
35 | + | ||
21 | 36 |
| |
22 | 37 |
| |
23 | 38 |
| |
| |||
28 | 43 |
| |
29 | 44 |
| |
30 | 45 |
| |
31 | - | ||
46 | + | ||
47 | + | ||
48 | + | ||
32 | 49 |
| |
33 | 50 |
| |
34 | 51 |
| |
35 | - | ||
52 | + | ||
53 | + | ||
54 | + | ||
55 | + | ||
56 | + | ||
57 | + | ||
58 | + | ||
59 | + | ||
36 | 60 |
| |
37 | 61 |
| |
38 | 62 |
| |
| |||
85 | 109 |
| |
86 | 110 |
| |
87 | 111 |
| |
88 | - | ||
89 | - | ||
112 | + | ||
113 | + | ||
114 | + | ||
90 | 115 |
| |
91 | 116 |
| |
92 | 117 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
68 | 68 |
| |
69 | 69 |
| |
70 | 70 |
| |
71 | - | ||
71 | + | ||
72 | 72 |
| |
73 | 73 |
| |
74 | 74 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
23 | 23 |
| |
24 | 24 |
| |
25 | 25 |
| |
26 | + | ||
27 | + | ||
28 | + | ||
26 | 29 |
| |
27 | 30 |
| |
28 | 31 |
| |
29 | 32 |
| |
33 | + | ||
34 | + | ||
35 | + | ||
30 | 36 |
| |
31 | 37 |
| |
32 | 38 |
| |
| |||
130 | 136 |
| |
131 | 137 |
| |
132 | 138 |
| |
139 | + | ||
133 | 140 |
| |
134 | 141 |
| |
135 | 142 |
| |
136 | 143 |
| |
137 | 144 |
| |
138 | 145 |
| |
146 | + | ||
139 | 147 |
| |
140 | 148 |
| |
141 | 149 |
| |
| |||
145 | 153 |
| |
146 | 154 |
| |
147 | 155 |
| |
156 | + | ||
148 | 157 |
| |
149 | 158 |
| |
150 | 159 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 | - | ||
1 | + | ||
2 | 2 |
| |
3 | 3 |
| |
4 | 4 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
41 | 41 |
| |
42 | 42 |
| |
43 | 43 |
| |
44 | - | ||
45 | 44 |
| |
46 | 45 |
| |
47 | 46 |
| |
| |||
58 | 57 |
| |
59 | 58 |
| |
60 | 59 |
| |
61 | - | ||
62 | 60 |
| |
63 | 61 |
| |
64 | 62 |
| |
| |||
82 | 80 |
| |
83 | 81 |
| |
84 | 82 |
| |
85 | - | ||
86 | 83 |
| |
87 | 84 |
| |
88 | 85 |
| |
| |||
108 | 105 |
| |
109 | 106 |
| |
110 | 107 |
| |
111 | - | ||
112 | 108 |
| |
113 | 109 |
| |
114 | 110 |
| |
| |||
147 | 143 |
| |
148 | 144 |
| |
149 | 145 |
| |
150 | - | ||
151 | 146 |
| |
152 | 147 |
| |
153 | 148 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
24 | 24 |
| |
25 | 25 |
| |
26 | 26 |
| |
27 | - | ||
28 | - | ||
27 | + | ||
29 | 28 |
| |
30 | 29 |
| |
31 | 30 |
| |
| |||
45 | 44 |
| |
46 | 45 |
| |
47 | 46 |
| |
48 | - | ||
47 | + | ||
49 | 48 |
| |
50 | 49 |
| |
51 | 50 |
| |
52 | 51 |
| |
53 | 52 |
| |
54 | 53 |
| |
55 | 54 |
| |
56 | - | ||
55 | + | ||
57 | 56 |
| |
58 | 57 |
| |
59 | 58 |
| |
| |||
69 | 68 |
| |
70 | 69 |
| |
71 | 70 |
| |
72 | - | ||
73 | 71 |
| |
74 | 72 |
| |
75 | 73 |
| |
| |||
80 | 78 |
| |
81 | 79 |
| |
82 | 80 |
| |
83 | - | ||
84 | 81 |
| |
85 | 82 |
| |
86 | 83 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 | - | ||
2 | - | ||
1 | + | ||
2 | + | ||
3 | 3 |
| |
4 | 4 |
| |
5 | 5 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 | - | ||
1 | + | ||
2 | + | ||
2 | 3 |
| |
3 | 4 |
| |
4 | 5 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 | - | ||
2 | - | ||
1 | + | ||
2 | + | ||
3 | 3 |
| |
4 | 4 |
| |
5 | 5 |
| |
|
0 commit comments