Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rollup of 8 pull requests #130265

Closed
wants to merge 17 commits into from
Closed

Conversation

Zalathar
Copy link
Contributor

Successful merges:

r? @ghost
@rustbot modify labels: rollup

Create a similar rollup

alexcrichton and others added 17 commits September 5, 2024 09:31
This commit updates the compiler-builtins crate from 0.1.123 to 0.1.125.
The changes in this update are:

* rust-lang/compiler-builtins#682
* rust-lang/compiler-builtins#678
* rust-lang/compiler-builtins#685
…finitely.

Because constants are currently emitted *before* the prologue, leaving the
debug location on the IRBuilder spills onto other instructions in the prologue
and messes up both line numbers as well as the point LLVM chooses to be the
prologue end.

Example LLVM IR (irrelevant IR elided):
Before:

define internal { i64, i64 } @_ZN3tmp3Foo18var_return_opt_try17he02116165b0fc08cE(ptr align 8 %self) !dbg !347 {
start:
  %self.dbg.spill = alloca [8 x i8], align 8
  %_0 = alloca [16 x i8], align 8
  %residual.dbg.spill = alloca [0 x i8], align 1
    #dbg_declare(ptr %residual.dbg.spill, !353, !DIExpression(), !357)
  store ptr %self, ptr %self.dbg.spill, align 8, !dbg !357
    #dbg_declare(ptr %self.dbg.spill, !350, !DIExpression(), !358)

After:

define internal { i64, i64 } @_ZN3tmp3Foo18var_return_opt_try17h00b17d08874ddd90E(ptr align 8 %self) !dbg !347 {
start:
  %self.dbg.spill = alloca [8 x i8], align 8
  %_0 = alloca [16 x i8], align 8
  %residual.dbg.spill = alloca [0 x i8], align 1
    #dbg_declare(ptr %residual.dbg.spill, !353, !DIExpression(), !357)
  store ptr %self, ptr %self.dbg.spill, align 8
    #dbg_declare(ptr %self.dbg.spill, !350, !DIExpression(), !358)

Note in particular how !357 from %residual.dbg.spill's dbg_declare no longer
falls through onto the store to %self.dbg.spill. This fixes argument values
at entry when the constant is a ZST (e.g. <Option as Try>::Residual). This
fixes rust-lang#130003 (but note that it does *not* fix issues with argument values and
non-ZST constants, which emit their own stores that have debug info on them,
like rust-lang#128945).
The minimum that `rustc` encoded did not match the version in Clang, and
that meant that that when linking, we ended up bumping the version.

Specifically, this sets the correct deployment target of the following
simulator and Mac Catalyst targets:
- `aarch64-apple-ios-sim` from 10.0 to 14.0
- `aarch64-apple-tvos-sim` from 10.0 to 14.0
- `aarch64-apple-watchos-sim` from 5.0 to 7.0
- `aarch64-apple-ios-macabi` from 13.1 to 14.0

I have chosen to not document the simulator target versions in the
platform support docs, as it is fundamentally uninteresting; the normal
targets (e.g. `aarch64-apple-ios`, `aarch64-apple-tvos`) still have the
same deployment target as before, and that's what developers should
actually target.
pointer -> reference
…nt-targets, r=jieyouxu

Fix default/minimum deployment target for Aarch64 simulator targets

The minimum that `rustc` encoded did not match [the version in Clang](https://github.com/llvm/llvm-project/blob/llvmorg-18.1.8/llvm/lib/TargetParser/Triple.cpp#L1900-L1932), and that meant that that when linking, Clang ended up bumping the version. See rust-lang#129432 for more motivation behind this change.

Specifically, this PR sets the correct deployment target of the following targets:
- `aarch64-apple-ios-sim` from 10.0 to 14.0
- `aarch64-apple-tvos-sim` from 10.0 to 14.0
- `aarch64-apple-watchos-sim` from 5.0 to 7.0
- `aarch64-apple-ios-macabi` from 13.1 to 14.0

I have chosen not to document the `-sim` changes in the platform support docs, as it is fundamentally uninteresting; the normal targets (e.g. `aarch64-apple-ios`) still have the same deployment target, and that's what developers should actually target.

r? compiler

CC `@BlackHoleFox`
…ins, r=tgross35

Update compiler-builtins to 0.1.125

This commit updates the compiler-builtins crate from 0.1.123 to 0.1.125. The changes in this update are:

* rust-lang/compiler-builtins#682
* rust-lang/compiler-builtins#678
* rust-lang/compiler-builtins#685
…-emission, r=michaelwoerister

Don't leave debug locations for constants sitting on the builder indefinitely

Because constants are currently emitted *before* the prologue, leaving the debug location on the IRBuilder spills onto other instructions in the prologue and messes up both line numbers as well as the point LLVM chooses to be the prologue end.

Example LLVM IR (irrelevant IR elided):
Before:
```
define internal { i64, i64 } ```@_ZN3tmp3Foo18var_return_opt_try17he02116165b0fc08cE(ptr``` align 8 %self) !dbg !347 { start:
  %self.dbg.spill = alloca [8 x i8], align 8
  %_0 = alloca [16 x i8], align 8
  %residual.dbg.spill = alloca [0 x i8], align 1
    #dbg_declare(ptr %residual.dbg.spill, !353, !DIExpression(), !357)
  store ptr %self, ptr %self.dbg.spill, align 8, !dbg !357
    #dbg_declare(ptr %self.dbg.spill, !350, !DIExpression(), !358)
```
After:
```
define internal { i64, i64 } ```@_ZN3tmp3Foo18var_return_opt_try17h00b17d08874ddd90E(ptr``` align 8 %self) !dbg !347 { start:
  %self.dbg.spill = alloca [8 x i8], align 8
  %_0 = alloca [16 x i8], align 8
  %residual.dbg.spill = alloca [0 x i8], align 1
    #dbg_declare(ptr %residual.dbg.spill, !353, !DIExpression(), !357)
  store ptr %self, ptr %self.dbg.spill, align 8
    #dbg_declare(ptr %self.dbg.spill, !350, !DIExpression(), !358)
```
Note in particular how !357 from %residual.dbg.spill's dbg_declare no longer falls through onto the store to %self.dbg.spill. This fixes argument values at entry when the constant is a ZST (e.g. `<Option as Try>::Residual`). This fixes rust-lang#130003 (but note that it does *not* fix issues with argument values and non-ZST constants, which emit their own stores that have debug info on them, like rust-lang#128945).

r? ```@michaelwoerister```
Add test for S_OBJNAME & update test for LF_BUILDINFO cl and cmd

Update the unit test for checking cl and cmd in LF_BUILDINFO. With llvm-pdbutil we can now more specifically check if the string appears at the right location instead of just checking whether the string exists at all.
Context: rust-lang#96475
…, r=Amanieu

Fix `slice::first_mut` docs

Changes `pointer` to `reference` since that's the actual type it returns.

`slice::last_mut` does correctly say "reference"
…, r=jieyouxu

Fix `clippy::useless_conversion`

Self-explanatory. Probably the last clippy change I'll actually put up since this is the only other one I've actually seen in the wild.
…ukang

Properly report error on `const gen fn`

Fixes rust-lang#130232

Also removes some (what I thought were unused) functions, and fixes a bug in clippy where we considered `gen fn` to be the same as `fn` because it was only built to consider asyncness.
Re-run coverage tests if `coverage-dump` was modified

If the `coverage-dump` tool was modified, coverage tests should not be treated as up-to-date, because the tool's output might have changed.

Bootstrap already handles rebuilding the tool itself if its sources were changed, so all compiletest needs to do here is include the binary in the list of files whose timestamps are checked.

This should have no effect on non-coverage tests, because bootstrap won't pass the `--coverage-dump-path` flag, so the path in compiletest's config will be None.
@rustbot rustbot added A-run-make Area: port run-make Makefiles to rmake.rs A-testsuite Area: The testsuite used to check the correctness of rustc O-apple Operating system: Apple (macOS, iOS, tvOS, visionOS, watchOS) S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. T-bootstrap Relevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap) T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. T-libs Relevant to the library team, which will review and decide on the PR/issue. WG-trait-system-refactor The Rustc Trait System Refactor Initiative rollup A PR which is a rollup labels Sep 12, 2024
@Zalathar
Copy link
Contributor Author

@bors r+ rollup=never p=8

@bors
Copy link
Contributor

bors commented Sep 12, 2024

📌 Commit 81cba5e has been approved by Zalathar

It is now in the queue for this repository.

@bors bors added S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Sep 12, 2024
@bors
Copy link
Contributor

bors commented Sep 12, 2024

⌛ Testing commit 81cba5e with merge cbceb29...

bors added a commit to rust-lang-ci/rust that referenced this pull request Sep 12, 2024
Rollup of 8 pull requests

Successful merges:

 - rust-lang#129367 (Fix default/minimum deployment target for Aarch64 simulator targets)
 - rust-lang#129992 (Update compiler-builtins to 0.1.125)
 - rust-lang#130052 (Don't leave debug locations for constants sitting on the builder indefinitely)
 - rust-lang#130156 (Add test for S_OBJNAME & update test for LF_BUILDINFO cl and cmd)
 - rust-lang#130160 (Fix `slice::first_mut` docs)
 - rust-lang#130250 (Fix `clippy::useless_conversion`)
 - rust-lang#130252 (Properly report error on `const gen fn`)
 - rust-lang#130256 (Re-run coverage tests if `coverage-dump` was modified)

r? `@ghost`
`@rustbot` modify labels: rollup
@rust-log-analyzer
Copy link
Collaborator

The job dist-s390x-linux failed! Check out the build log: (web) (plain)

Click to see the possible cause of the failure (guessed by this bot)
[RUSTC-TIMING] rustc_driver_impl test:false 64.027
[RUSTC-TIMING] rustc_interface test:false 95.215
[RUSTC-TIMING] rustc_query_impl test:false 210.096
   Compiling rustc_driver v0.0.0 (/checkout/compiler/rustc_driver)
##[warning]You are running out of disk space. The runner will stop working when the machine runs out of disk space. Free space left: 80 MB
error: linking with `s390x-ibm-linux-gnu-gcc` failed: exit status: 1
  |
  = note: LC_ALL="C" PATH="/checkout/obj/build/x86_64-unknown-linux-gnu/stage1/lib/rustlib/x86_64-unknown-linux-gnu/bin:/checkout/obj/build/x86_64-unknown-linux-gnu/stage1/lib/rustlib/x86_64-unknown-linux-gnu/bin:/checkout/obj/build/x86_64-unknown-linux-gnu/stage1/lib/rustlib/x86_64-unknown-linux-gnu/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/x-tools/s390x-ibm-linux-gnu/bin" VSLANG="1033" "s390x-ibm-linux-gnu-gcc" "-Wl,--version-script=/tmp/rustc2TPWEi/list" "-Wl,--no-undefined-version" "/tmp/rustc2TPWEi/symbols.o" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/rustc_driver-89ae466772f89f69.rustc_driver.2bf97408f7a8c6f1-cgu.0.rcgu.o" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/rustc_driver-89ae466772f89f69.ad75u0g1xbkp118su9ff4rid0.rcgu.rmeta" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/rustc_driver-89ae466772f89f69.6ksgevtcxluvi8scc214hmf4q.rcgu.o" "-Wl,--as-needed" "-Wl,-Bstatic" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_driver_impl-08d2a0f71ad7a56c.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libctrlc-7ba6254947df3954.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libnix-04ac5694d3dcf05f.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_log-e70a29192c5ee8bd.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libtracing_tree-a0501018418486d0.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libtracing_log-af7b1a37048ccace.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libnu_ansi_term-090d39585d8337ce.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libtracing_subscriber-b8cd41b30a9d32e3.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libnu_ansi_term-1c65796be3fd3821.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/liboverload-212648793a3b1191.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libsharded_slab-97ccfc629001357e.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/liblazy_static-dd7edbe66c3f76f7.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libmatchers-4c8ad0f0e8d656e2.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libregex_automata-477f5493fda06960.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libregex_syntax-19f2d28e7a8c2495.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libthread_local-80ed6702158e8e15.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libshlex-22614cbc2c22a58b.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_smir-9434e97b55f6b40c.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libstable_mir-47c1082259d22a91.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libtime-4a39a156a4a36541.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libtime_core-11f39107de8016e5.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libnum_conv-775144353bab72ef.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libderanged-7309896191ebec0d.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libpowerfmt-2808b04dc7d86ab1.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_interface-8d307381e10a4d8f.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_codegen_llvm-5b48782479693ebb.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_llvm-df300a36aa8613b8.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_sanitizers-20d9f96815f4bb2e.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_hir_typeck-a51dcf4080adda58.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_hir_analysis-a095cfad991680d2.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_monomorphize-afcf08c8cdb74f5b.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_mir_transform-d58d3277a95c5beb.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_mir_build-aad3df2caebbd2e6.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_pattern_analysis-2c63f3eb8186f8a9.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_borrowck-753f0bd93f876c2f.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_traits-b4bf35224af43522.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_ast_lowering-580315fc47f54883.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_builtin_macros-9a4df523a9a975f8.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_resolve-85902fc7185f80ad.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libpulldown_cmark-378af5cb23f40e1d.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libunicase-c40ef5bb2e77b324.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libpulldown_cmark_escape-aa5977d97aad8eb5.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_passes-b62c0f63c47b999e.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_privacy-21b189646e5786b0.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_ty_utils-f525bc9bd2d58762.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_query_impl-bc9399f92c400434.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_lint-507502d09ec6d579.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libunicode_security-3c48722834bf495f.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libunicode_script-375a68f9097e299a.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_const_eval-d9a3a69fadcd9471.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_trait_selection-4d565c5d99e149ab.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_parse_format-e9cd16031592439e.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_transmute-834682c475881899.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_mir_dataflow-5ffcc6541ea72e7c.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_infer-17b46c38e17fc142.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_next_trait_solver-c4eb391f79764d22.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_codegen_ssa-93336f478ad24969.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libwasm_encoder-96544927d7d25218.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libleb128-461bb95a34fd7652.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libthorin-f4e7c20cc8536568.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libgimli-e149d7ab9aca4e04.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libobject-9259284c0dbb86e1.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libruzstd-83ff8f2267bf8a92.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libtwox_hash-aea2a5ec559359f8.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libstatic_assertions-cd47b05756242eb0.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libflate2-ca99ab9c5318498e.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libminiz_oxide-f034e0f7c1c08214.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libadler-69e886272a47b8ae.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_symbol_mangling-58251ba59dbcb8a5.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_demangle-26840dac1f368100.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libpunycode-b8bc88d3a7ee05e6.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_incremental-a31a36c9a2cf9847.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libpathdiff-db7f2bf13cda5736.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_metadata-3801bb9d885469fe.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/liblibloading-afaede508e85bbb3.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libsnap-f2a7022f0ab343f3.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_expand-947c8d3f08265bcf.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_ast_passes-2c8cdaaa813e3ab2.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_parse-7fbf5d4ee1995736.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libunicode_normalization-fe9393ad1b14eb03.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libtinyvec-b379d2b4856f2b33.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libtinyvec_macros-317705dc1c132c8d.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1/lib/rustlib/s390x-unknown-linux-gnu/lib/libproc_macro-a7bc82873d84fc62.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libregex-e77a4c675f89ec9c.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libaho_corasick-c83b9bf22eb21644.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libregex_syntax-ef35d579b6f8588a.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libcc-7ab21c03bd9abc62.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libar_archive_writer-fb888b98f20033eb.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_middle-69d463d17a3e916a.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libfield_offset-29f179b714b89212.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libmemoffset-29f4e231f4c5cc36.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_apfloat-18f370eece5bacf4.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libbitflags-1345048953d9cafa.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libgsgdt-43064dc5837a0e45.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libpolonius_engine-d3db00385e041da0.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libdatafrog-b5e8bf684413c6c7.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_query_system-631f6fdaf69b61c2.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_attr-6c99311578c77c9c.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_session-a344abd31f118932.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libgetopts-4189ec63fa2e2e57.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_hir_pretty-e060a771e02c482e.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_errors-119773975dfb093d.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libtermize-be944530a6cb8854.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_error_codes-78c6847ee414d263.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_type_ir-8af0493070aa268c.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_ast_pretty-140a7e4e3ef1392b.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libitertools-3734d6f335f95612.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libannotate_snippets-324569abe0842979.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libanstyle-39926e26cb4984c6.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libtermcolor-411bd7354f7515ae.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_lint_defs-4f649e2a7521e341.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_error_messages-34943b31dcb2b189.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_baked_icu_data-5ed70d88f48bd847.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libicu_list-41e7e3172a4bf0ac.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libicu_list_data-7bfee937e6bad9ee.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libregex_automata-40ff0a8a721ac2fc.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libicu_provider_adapters-506b1665843b8d2d.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libicu_locid_transform-ac7522deee52d729.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libicu_locid_transform_data-c648dc7d96942393.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libicu_provider-02f5a0f9bd252281.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libicu_locid-1cd7df45531f2e99.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/liblitemap-1f91e44d81816408.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libwriteable-656aec65faa451b7.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libfluent_bundle-6dadf635ab42032c.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libfluent_langneg-74081af010df873b.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libintl_pluralrules-1c2c8b58508232d0.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libself_cell-8f67aa3b079650d0.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libself_cell-fa4bf7abf6bad6c1.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libintl_memoizer-8268869c1a2c48eb.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libtype_map-68a19ee702b1010b.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libunic_langid-c186c7d806007c2a.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libunic_langid_macros-d2376f338fab6853.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libunic_langid_impl-9fd12ff2be74bb1c.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libtinystr-1b2ca4cc31b01206.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libzerovec-c5e6143b3071a296.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libyoke-0b33bd4e783483fa.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libzerofrom-7f3d1dae8d014c32.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libfluent_syntax-7f0c02090fbc5a21.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libthiserror-92833ec6781c5b71.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_hir-86cd7e073f179ad6.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libodht-0035105f0ec72971.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_target-627708afda7c39df.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_feature-4854d16f29baec2a.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libobject-b67f927e1cbbb712.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libcrc32fast-9454c2377d78504f.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libwasmparser-c65d950fc3143724.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_fs_util-6ca7c2d20a85a1b9.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libserde_json-ebf69073707fd0a3.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libryu-5b0cc75792fcb9b7.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libserde-f0e367cad4e47e03.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_abi-b18c62d01613262f.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librand_xoshiro-f723318a3b9a60e6.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librand-ec80c8feddccbec1.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librand_chacha-2a7bee045ad79195.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libppv_lite86-f2db79f0a9044d4e.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librand_core-a2d199e304dc4d2c.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libgetrandom-e32847b95f6aad0e.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_ast-bfcdd83ac367181c.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libmemchr-08633afd88120280.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_ast_ir-1afbabdb1604295e.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_lexer-ccb4274688350e43.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libunicode_xid-f0b864a633e86737.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libunicode_properties-b9c49afa3540aa66.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_span-1646eee9dbdf5fff.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libunicode_width-5133b729d7fd3287.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libitoa-ab8b05326a20f6c3.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libscoped_tls-7efbdf72e35bd224.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libsha2-cd396f88242d357f.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libsha1-92ba55e641919484.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libmd5-3dc12449ac419d5d.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libdigest-db1a4a77d6ed614f.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libblock_buffer-a50abb2f47257515.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libcrypto_common-c1b6226c63847eb6.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libgeneric_array-e49f93eaa64a84dc.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libtypenum-e204a3fa43b832bf.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_data_structures-c634fd71a7a2ff3d.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libelsa-fff3b02da782a4ac.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libstable_deref_trait-1335aa73008578aa.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libstacker-6ee960df4a8a245e.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libpsm-000efb8b7d5ec6df.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libmemmap2-09cfee71f26b3b80.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_arena-6de2b2eb1497b029.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libtempfile-51eb4ea1976b5733.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libfastrand-54a82746d9a42ad7.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustix-358b6d6d98e82a28.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/liblinux_raw_sys-097ab420d8d16f73.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libbitflags-f69108c86ab9683a.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/liberrno-c7562aadf0cb79d7.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_stable_hash-8e782e295df7a0b9.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libmeasureme-6d893d78a347f28c.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libparking_lot-336ddc8164e4b7f3.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libparking_lot_core-c425fb29d5ea7575.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/liblock_api-f022c819861c3a12.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libscopeguard-4bf1dec0bb25f10d.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_graphviz-322b87c610a0d948.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libjobserver-3a7b43d8c4322a00.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libtracing-38e9d012e2fd12da.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libpin_project_lite-67fa49d91917e736.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libtracing_core-4723ac95ff19ca85.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_hash-a85be72553177d1a.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_index-ff6a3606f0c5148a.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_serialize-0844d8ef59da4b02.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libindexmap-1fe7a98ede225599.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libequivalent-7a7896ac9a2eca4a.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librayon-0ca36ca9353be980.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librayon_core-ff0e854de816ef3c.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libnum_cpus-179aed26a3c40783.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/liblibc-826b4edcb3e1dd59.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libcrossbeam_deque-38045abde4c040da.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libcrossbeam_epoch-c46ef2cc67d5f151.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libcrossbeam_channel-66c6fc2008d6aa86.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libcrossbeam_utils-d6ed884d14303fa0.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libeither-976a0f2347e88f1f.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libhashbrown-7f5f3aa0698be007.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libahash-c040efb10fbfcef1.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libonce_cell-e1bbdf0eff92446c.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libcfg_if-f48280fd002502c0.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libzerocopy-6fdf6f62736aac3a.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libbyteorder-b17af275199b41d1.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/liballocator_api2-089c2b88af7ac55b.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libthin_vec-462c5d480c809f96.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libsmallvec-26955616189038f7.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libarrayvec-af4ab54fa2fb5d0a.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/libena-579566e5df6ee82e.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/liblog-a890975cad793655.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1/lib/rustlib/s390x-unknown-linux-gnu/lib/libstd-913dd7d11ae84205.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1/lib/rustlib/s390x-unknown-linux-gnu/lib/libpanic_unwind-fe26bcd20da8171e.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1/lib/rustlib/s390x-unknown-linux-gnu/lib/libobject-7cf490fc0455cfc8.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1/lib/rustlib/s390x-unknown-linux-gnu/lib/libmemchr-154c383cf0b82bd7.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1/lib/rustlib/s390x-unknown-linux-gnu/lib/libaddr2line-678302cec3497967.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1/lib/rustlib/s390x-unknown-linux-gnu/lib/libgimli-39a6f80d8658e47c.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1/lib/rustlib/s390x-unknown-linux-gnu/lib/librustc_demangle-7a3eb2e5e0add5f7.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1/lib/rustlib/s390x-unknown-linux-gnu/lib/libstd_detect-9f4d435194eb67e1.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1/lib/rustlib/s390x-unknown-linux-gnu/lib/libhashbrown-16b4693435de0aa7.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1/lib/rustlib/s390x-unknown-linux-gnu/lib/librustc_std_workspace_alloc-67c760ffb80bcf68.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1/lib/rustlib/s390x-unknown-linux-gnu/lib/libminiz_oxide-259198225967f210.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1/lib/rustlib/s390x-unknown-linux-gnu/lib/libadler-a47e3852c29adac6.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1/lib/rustlib/s390x-unknown-linux-gnu/lib/libunwind-2ace7e0b2b8bce85.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1/lib/rustlib/s390x-unknown-linux-gnu/lib/libcfg_if-c0129648fb8e0107.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1/lib/rustlib/s390x-unknown-linux-gnu/lib/liblibc-b5be9aab72a8f067.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1/lib/rustlib/s390x-unknown-linux-gnu/lib/liballoc-4cab15fd38ff2cdc.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1/lib/rustlib/s390x-unknown-linux-gnu/lib/librustc_std_workspace_core-bf3c099599d26509.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1/lib/rustlib/s390x-unknown-linux-gnu/lib/libcore-1a75f612d6b6fbcf.rlib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1/lib/rustlib/s390x-unknown-linux-gnu/lib/libcompiler_builtins-fe7bf7e46ead0e01.rlib" "-Wl,-Bdynamic" "-ldl" "-lgcc_s" "-lutil" "-lrt" "-lpthread" "-lm" "-ldl" "-lc" "-Wl,--eh-frame-hdr" "-Wl,-z,noexecstack" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/build/psm-b27a36895b882bb4/out" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/build/rustc_llvm-e49267c1d7d8e108/out" "-L" "/checkout/obj/build/s390x-unknown-linux-gnu/llvm/lib" "-L" "/x-tools/s390x-ibm-linux-gnu/lib/gcc/s390x-ibm-linux-gnu/8.5.0/../../../../s390x-ibm-linux-gnu/lib/../lib64" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1/lib/rustlib/s390x-unknown-linux-gnu/lib" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc/s390x-unknown-linux-gnu/release/deps/librustc_driver-89ae466772f89f69.so" "-shared" "-Wl,-soname=librustc_driver-89ae466772f89f69.so" "-Wl,-z,relro,-z,now" "-Wl,-O1" "-nodefaultlibs" "-Wl,-z,origin" "-Wl,-rpath,$ORIGIN/../lib"
          

[RUSTC-TIMING] rustc_driver test:false 8.023
error: could not compile `rustc_driver` (lib) due to 1 previous error

@bors
Copy link
Contributor

bors commented Sep 12, 2024

💔 Test failed - checks-actions

@bors bors added S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. and removed S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. labels Sep 12, 2024
@Zalathar
Copy link
Contributor Author

This looks spurious, but I'm not confident. 🤷‍♂️

@Zalathar Zalathar closed this Sep 12, 2024
@Zalathar Zalathar deleted the rollup-cm4x04z branch September 12, 2024 10:35
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-run-make Area: port run-make Makefiles to rmake.rs A-testsuite Area: The testsuite used to check the correctness of rustc O-apple Operating system: Apple (macOS, iOS, tvOS, visionOS, watchOS) rollup A PR which is a rollup S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. T-bootstrap Relevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap) T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. T-libs Relevant to the library team, which will review and decide on the PR/issue. WG-trait-system-refactor The Rustc Trait System Refactor Initiative
Projects
Status: Done
Development

Successfully merging this pull request may close these issues.

10 participants