Skip to content

Rollup of 6 pull requests - #160786

Closed
jhpratt wants to merge 15 commits into
rust-lang:mainfrom
jhpratt:rollup-Mfq8vBr
Closed

Rollup of 6 pull requests#160786
jhpratt wants to merge 15 commits into
rust-lang:mainfrom
jhpratt:rollup-Mfq8vBr

Conversation

@jhpratt

@jhpratt jhpratt commented Aug 9, 2026

Copy link
Copy Markdown
Member

Successful merges:

r? @ghost

Create a similar rollup

JonathanBrouwer and others added 15 commits July 31, 2026 13:27
- Upgrade from `getrandom v0.4.2` to `v0.4.3` to drop its `wasip2` and
  `wasip3` dependencies and many transitives.
- Upgrade from `gimli v0.33` to `v0.34` as a direct dependency and
  through a `thorin-dwp` upgrade.
- Upgrade from `object v0.37` and `v0.38` to `v0.39` as a direct
  dependency and via `ar_archive_writer` and `thorin-dwp` upgrades.
- Upgrade `libloading` and `wasmparser` to match other dependencies.

This also consolidates from `hashbrown v0.15`, `v0.16`, and `v0.17` to
just `v0.17.1`, which is the same that `std` currently uses.
Upgrade and deduplicate dependencies

- Upgrade from `getrandom v0.4.2` to `v0.4.3` to drop its `wasip2` and
  `wasip3` dependencies and many transitives.
- Upgrade from `gimli v0.33` to `v0.34` as a direct dependency and
  through a `thorin-dwp` upgrade.
- Upgrade from `object v0.37` and `v0.38` to `v0.39` as a direct
  dependency and via `ar_archive_writer` and `thorin-dwp` upgrades.
- Upgrade `libloading` and `wasmparser` to match other dependencies.

This also consolidates from `hashbrown v0.15`, `v0.16`, and `v0.17` to
just `v0.17.1`, which is the same that `std` currently uses.
…ameters, r=JohnTitor

Initial implementation of named `Fn` trait parameters

This is an initial implementation of the feature `named_fn_trait_parameters`.
This implementation is incomplete (and also marked as such) , and needs significant further changes to be implemented correctly. To keep the size of this PR managable, I propose we do this in follow-up PRs.
I've added a test that shows the current behaviour, with `FIXME` comments where the test output is currently incorrect.

Tracking issue: rust-lang#158499
Accepted RFC: rust-lang/rfcs#3955
check if len of array const arg matches the expected len of the type when lowering to valtree

When creating valtrees for arrays passed as const args in `lower_const_arg_array`, we assume the array has the correct length without actually checking the length of the arg, leading to UB at runtime (rust-lang#155168) or an ICE during CTFE (rust-lang#151079). This PR adds a check comparing the expected length of the type with the actual number of elements, similar to `lower_const_arg_tup`.

fixes rust-lang#155168
…eGomez

Add regression test for cross-crate assoc const private field leak in rustdoc

Closes rust-lang#99630 adds a rustdoc test, reexporting a type must not leak the private field
…ism, r=Mark-Simulacrum

remove old update mechanism
…=mejrs,ZuseZ4

Fix autodiff_illegal.rs test

This fixes the current CI failure: rust-lang#160761 (comment)

r? @ZuseZ4
@rust-bors rust-bors Bot added the rollup A PR which is a rollup label Aug 9, 2026
@rustbot rustbot added A-CI Area: Our Github Actions CI A-LLVM Area: Code generation parts specific to LLVM. Both correctness bugs and optimization-related issues. A-run-make Area: port run-make Makefiles to rmake.rs A-tidy Area: The tidy tool 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-infra Relevant to the infrastructure team, which will review and decide on the PR/issue. T-rustdoc Relevant to the rustdoc team, which will review and decide on the PR/issue. T-rustdoc-frontend Relevant to the rustdoc-frontend team, which will review and decide on the web UI/UX output. labels Aug 9, 2026
@jhpratt

jhpratt commented Aug 9, 2026

Copy link
Copy Markdown
Member Author

@bors r+ p=5

@rust-bors

rust-bors Bot commented Aug 9, 2026

Copy link
Copy Markdown
Contributor

📌 Commit 866f202 has been approved by jhpratt

It is now in the queue for this repository.

@rust-bors rust-bors Bot 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 Aug 9, 2026
@rust-bors

This comment has been minimized.

rust-bors Bot pushed a commit that referenced this pull request Aug 9, 2026
Rollup of 6 pull requests

Successful merges:

 - #160529 (Upgrade and deduplicate dependencies)
 - #158517 (Initial implementation of named `Fn` trait parameters)
 - #158587 (check if len of array const arg matches the expected len of the type when lowering to valtree)
 - #160748 (Add regression test for cross-crate assoc const private field leak in rustdoc)
 - #160708 (remove old update mechanism)
 - #160768 (Fix autodiff_illegal.rs test)
@rust-log-analyzer

Copy link
Copy Markdown
Collaborator

The job test-various failed! Check out the build log: (web) (plain enhanced) (plain)

Click to see the possible cause of the failure (guessed by this bot)

---- [run-make] tests/run-make/wasm-import-module stdout ----
------rustc stdout------------------------------

------rustc stderr------------------------------
error[E0609]: no field `module` on type `Imports<'_>`
##[error]  --> /checkout/tests/run-make/wasm-import-module/rmake.rs:20:33
   |
20 |                 imports.entry(i.module).or_insert(Vec::new()).push((i.name, i.ty));
   |                                 ^^^^^^ unknown field

error[E0609]: no field `name` on type `Imports<'_>`
##[error]  --> /checkout/tests/run-make/wasm-import-module/rmake.rs:20:71
   |
20 |                 imports.entry(i.module).or_insert(Vec::new()).push((i.name, i.ty));
   |                                                                       ^^^^ unknown field

error[E0609]: no field `ty` on type `Imports<'_>`
##[error]  --> /checkout/tests/run-make/wasm-import-module/rmake.rs:20:79
   |
20 |                 imports.entry(i.module).or_insert(Vec::new()).push((i.name, i.ty));
   |                                                                               ^^ unknown field

error: aborting due to 3 previous errors

For more information about this error, try `rustc --explain E0609`.

------------------------------------------

error: run-make test failed: could not build `rmake.rs` recipe
status: exit status: 1
command: RUSTC_BOOTSTRAP="-1" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/rustc" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/run-make/wasm-import-module/rmake" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/rustc-hash/26ab4765364ec21a/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/clap_lex/17a0fe0c5c3e0bc0/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/tracing-subscriber/dbc5e3dfe11fed77/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/tracing-subscriber/49f31bad275c5161/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/wasm-metadata/3ba3aa9c9749b819/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/compiletest/741d7fca8d3e9a04/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/compiletest/8467bedc4602589a/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/bumpalo/181a205c1d5737a1/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/walkdir/80cd4ef88609e079/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/colorchoice/0ac2e114f4c75e96/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/anyhow/a716ac609530488b/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/anyhow/088b62232ff3284f/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/shim_utils/d70611d6fdbe1c17/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/serde_json/113761a86894063c/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/serde_json/b5d6d90a80d6c63e/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/serde_json/8b4cf61b2abbfadb/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/parking_lot/a276914180a4c12f/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/regex/414cefb594139708/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/regex/88ab2924c8c1eac6/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/tempfile/794232f8ef3e296f/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/tempfile/0122a9cb591f8f20/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/crc32fast/a1ab36eb0c00a176/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/crc32fast/72b0e815cd6b29ba/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/object/8d862286a696a666/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/object/90a105f63a3fd373/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/wat/3c731e081ef333d8/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/hashbrown/f5b24d09b82b038a/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/hashbrown/d8208342c8e99ae4/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/anstyle-query/52901cbf8bba20af/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/unicode-ident/4a820f0e00f482e7/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/llvm-bitcode-linker/7cdc962b8f1e6a88/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/llvm-bitcode-linker/92c19e974da602b7/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/stable_deref_trait/df76e5bd2b718b96/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/adler2/b77b45e36a0c4291/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/is_terminal_polyfill/8abad9f09c0d4527/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/wasmparser/6e99650c19af4bdf/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/wasmparser/7e2458bc35179904/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/miropt-test-tools/31c10cc09899749f/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/camino/fe180c270fad8608/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/camino/bdbfd9ef32c51655/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/wast/2e40ee8ea0531eca/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/semver/67e1102da9903185/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/semver/d385bb6f325b9855/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/rustix/6a0fa86248894268/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/rustix/352cd526473ad539/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/regex-syntax/99a86fbd3449d84b/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/anstyle-lossy/97d37ead1455aa4e/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/unicode-width/629f8dfefd81dafa/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/gimli/ede8df4878dbbca4/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/miniz_oxide/51ba50bed91322c0/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/build_helper/3b8918dcf221ef11/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/strsim/c2e675a39593f375/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/wit-parser/52bf9cf1f706ae7b/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/nu-ansi-term/ed9401c73420c4b9/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/ryu/ab36228901aa3162/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/pin-project-lite/5ac859a8f4270455/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/id-arena/ed21d23d92905e52/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/home/46cb7cccdba832c4/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/wasi-preview1-component-adapter-provider/36950795a261bbd0/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/lock_api/ec6f06f1e41d9996/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/libc/01af64669632c434/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/libc/62ef6adc1b838ff1/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/crossbeam-epoch/99be7695060e1512/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/crossbeam-epoch/13b5eadf7ce6cf7f/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/flate2/e01c1fd020741452/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/similar/804bc82e97a1ac1e/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/matchers/d5debfa340c92ff2/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/equivalent/2bf531dda633354a/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/serde_core/70d35fda45aa0862/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/serde_core/ed2dce56d02068b3/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/serde_core/a4cdada9540ccc66/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/serde_core/52e2e2da5f26e814/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/memchr/b3cb699922c61672/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/memchr/15a36a63432354ba/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/diff/958208f4ee548ee0/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/bitflags/caa21ad63d38aa7f/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/leb128fmt/17b683095d97e446/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/lexopt/383aec1bc84fd2bf/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/html-escape/e10047bddf69a68b/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/thread_local/5793adc9f8087cbe/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/simd-adler32/738c7c4cab66e3d1/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/rustfix/cd32e91a31133b1b/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/regex-automata/9a5b2b11f71acdf3/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/regex-automata/b9222180b123289e/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/thiserror/94790af23f90f096/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/thiserror/21c3c7f596e2b054/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/colored/6254eeafb48c29df/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/tracing-log/14b73ab3fcc291d1/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/rayon-core/025335d973e577e6/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/rayon-core/d31a41dfa8ebbcd5/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/clap_builder/12297b7ab588cb32/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/clap_builder/1fb6a500fd02658e/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/serde/abdc9fd776b1c0dd/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/serde/7f4c3320df42d1c8/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/serde/46209502a977a221/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/serde/1ab77ec74db9ce4c/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/serde/6dc69d7beacbb504/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/serde/571561cd9ec1d262/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/same-file/4745e6ed58347cd8/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/clap/92488705f4f8d67c/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/clap/4e806f78aa2f7182/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/clap/2eb115f2408d31e7/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/twox-hash/14bbe15ba4ebe956/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/either/189927ef80ac616f/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/run_make_support/8c4788d1ef71fa2d/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/unified-diff/4d56a1c84ef5ff39/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/anstream/125c43b5abbf58fe/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/rayon/18514582221b5e1a/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/wasm-component-ld-wrapper/6b24ea48f703a514/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/cfg-if/3dac9b76e42e1c31/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/aho-corasick/d1bdd511c6f14f54/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/log/ad92df7ff97dc712/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/log/b7ea899686d52be7/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/fastrand/9b10df5da3f0ba07/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/sharded-slab/701b874a9d8090ed/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/lld-wrapper/2b01c093a8af7643/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/anstyle/7f83b1fa26dac4ac/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/crossbeam-deque/5051befb1ed8c8c3/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/utf8-width/7c1a624f6777736c/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/crossbeam-utils/1dd1464409ddb263/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/crossbeam-utils/2b42a3cb3ab85e72/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/anstyle-svg/bf4a7b435c4fc736/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/rustdoc-json-types/c3243de709a9caba/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/wit-component/ec26781410570cf5/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/lazy_static/34aa33ee3de7f0bf/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/smallvec/03c79c6282e861a2/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/anstyle-parse/341771ccca003777/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/anstyle-parse/dfde1f1634390a5d/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/tracing/df9f18094f9b7f74/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/tracing/3f67c4f2810717dc/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/linux-raw-sys/70610e50fc8d8889/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/bstr/41bc292081c0938f/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/wasm-component-ld/f24bc7b5668f2ee7/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/once_cell/673253e48fbdf645/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/once_cell/085e6bca3440dac0/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/wasm-encoder/e144a20769e58bab/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/scopeguard/681308e030ba250f/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/foldhash/1eda21dc393d4275/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/indexmap/5b40b4b9a90d9e2d/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/indexmap/f342e36edba65ceb/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/indexmap/c40f8f64f7ef1f8c/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/utf8parse/bce313d6354d291b/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/parking_lot_core/c3e5ca6836ffd7aa/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/parking_lot_core/1bbde61d698dcf28/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/getrandom/4c89ca705145f68e/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/getrandom/9569bb163d3eaf85/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/ruzstd/528f710a4e52ce18/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/glob/a24678615c5bb1e8/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/tracing-core/0d9f161f606d643e/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/tracing-core/3890c69a18222582/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/itoa/23671a0fb0e561fb/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/fnv/e2bcb80092176fa3/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/heck/d3382151a6bdcea1/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/anyhow/404d7aea713835df/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/serde_json/08adc21a4135345d/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/crc32fast/d8866d992bfeb5a3/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/object/568d043dd395f9a5/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/unicode-ident/d328bebad7fba1e8/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/camino/f76cc4931dd43b37/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/rustix/74e0940898b1dbd8/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/thiserror-impl/a25693605f497a2d/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/serde_derive/709d21dffd2b6dd7/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/serde_derive/ac13d48210959d15/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/serde_derive/8e3954a053463383/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/tracing-attributes/cfc0af48b6604a34/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/proc-macro2/cc51e7f2b563ec5a/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/proc-macro2/c050f6e54c55c71d/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/proc-macro2/4d2f873096f7c755/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/proc-macro2/16786004ca9508fd/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/proc-macro2/a66bff7d5039ac61/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/proc-macro2/a81c7aa6e11837c3/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/libc/7ef9a45fc7ae7fc0/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/crossbeam-epoch/7f129f3538b3a360/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/serde_core/1555127993f7a381/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/serde_core/c5ffe4e3bdf3b926/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/quote/3f601622cf34cdba/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/quote/8497a78dc828f53e/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/quote/e804f208de340def/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/quote/876fe4b8c242f1aa/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/quote/bca9ccd95fc35f8e/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/quote/c35a232119ca7177/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/syn/2c0ba48bf9e1bc26/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/syn/b8882cd9118416b9/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/syn/a376c1a180b73eb0/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/thiserror/944237dde78465b5/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/rayon-core/bd09f129a4ccb5f1/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/serde/d3c0ae23ed88ca96/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/serde/2beb5b4935f4b913/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/serde/dc8eda69db032e86/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/crossbeam-utils/758d11cf714827dc/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/parking_lot_core/95e774076004deb8/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/getrandom/6111bb914f434fc8/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/clap_derive/d96f1e9e3b95ee71/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/clap_derive/b2739000dbc86d01/out" "--extern" "run_make_support=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/librun_make_support.rlib" "--edition=2024" "/checkout/tests/run-make/wasm-import-module/rmake.rs" "-Cprefer-dynamic" "-Dunused_must_use"
stdout: none
--- stderr -------------------------------
error[E0609]: no field `module` on type `Imports<'_>`
##[error]  --> /checkout/tests/run-make/wasm-import-module/rmake.rs:20:33
   |
20 |                 imports.entry(i.module).or_insert(Vec::new()).push((i.name, i.ty));
   |                                 ^^^^^^ unknown field

error[E0609]: no field `name` on type `Imports<'_>`
##[error]  --> /checkout/tests/run-make/wasm-import-module/rmake.rs:20:71
   |
20 |                 imports.entry(i.module).or_insert(Vec::new()).push((i.name, i.ty));
   |                                                                       ^^^^ unknown field

error[E0609]: no field `ty` on type `Imports<'_>`
##[error]  --> /checkout/tests/run-make/wasm-import-module/rmake.rs:20:79
   |
20 |                 imports.entry(i.module).or_insert(Vec::new()).push((i.name, i.ty));
   |                                                                               ^^ unknown field

error: aborting due to 3 previous errors

For more information about this error, try `rustc --explain E0609`.
------------------------------------------

---- [run-make] tests/run-make/wasm-import-module stdout end ----
---- [run-make] tests/run-make/wasm-spurious-import stdout ----
------rustc stdout------------------------------

------rustc stderr------------------------------
error[E0609]: no field `module` on type `Imports<'_>`
##[error]  --> /checkout/tests/run-make/wasm-spurious-import/rmake.rs:25:33
   |
25 |                 imports.entry(i.module).or_insert(Vec::new()).push((i.name, i.ty));
   |                                 ^^^^^^ unknown field

error[E0609]: no field `name` on type `Imports<'_>`
##[error]  --> /checkout/tests/run-make/wasm-spurious-import/rmake.rs:25:71
   |
25 |                 imports.entry(i.module).or_insert(Vec::new()).push((i.name, i.ty));
   |                                                                       ^^^^ unknown field

error[E0609]: no field `ty` on type `Imports<'_>`
##[error]  --> /checkout/tests/run-make/wasm-spurious-import/rmake.rs:25:79
   |
25 |                 imports.entry(i.module).or_insert(Vec::new()).push((i.name, i.ty));
   |                                                                               ^^ unknown field

error: aborting due to 3 previous errors

For more information about this error, try `rustc --explain E0609`.

------------------------------------------

error: run-make test failed: could not build `rmake.rs` recipe
status: exit status: 1
command: RUSTC_BOOTSTRAP="-1" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/rustc" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/run-make/wasm-spurious-import/rmake" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/rustc-hash/26ab4765364ec21a/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/clap_lex/17a0fe0c5c3e0bc0/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/tracing-subscriber/dbc5e3dfe11fed77/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/tracing-subscriber/49f31bad275c5161/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/wasm-metadata/3ba3aa9c9749b819/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/compiletest/741d7fca8d3e9a04/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/compiletest/8467bedc4602589a/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/bumpalo/181a205c1d5737a1/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/walkdir/80cd4ef88609e079/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/colorchoice/0ac2e114f4c75e96/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/anyhow/a716ac609530488b/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/anyhow/088b62232ff3284f/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/shim_utils/d70611d6fdbe1c17/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/serde_json/113761a86894063c/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/serde_json/b5d6d90a80d6c63e/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/serde_json/8b4cf61b2abbfadb/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/parking_lot/a276914180a4c12f/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/regex/414cefb594139708/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/regex/88ab2924c8c1eac6/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/tempfile/794232f8ef3e296f/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/tempfile/0122a9cb591f8f20/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/crc32fast/a1ab36eb0c00a176/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/crc32fast/72b0e815cd6b29ba/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/object/8d862286a696a666/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/object/90a105f63a3fd373/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/wat/3c731e081ef333d8/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/hashbrown/f5b24d09b82b038a/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/hashbrown/d8208342c8e99ae4/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/anstyle-query/52901cbf8bba20af/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/unicode-ident/4a820f0e00f482e7/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/llvm-bitcode-linker/7cdc962b8f1e6a88/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/llvm-bitcode-linker/92c19e974da602b7/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/stable_deref_trait/df76e5bd2b718b96/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/adler2/b77b45e36a0c4291/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/is_terminal_polyfill/8abad9f09c0d4527/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/wasmparser/6e99650c19af4bdf/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/wasmparser/7e2458bc35179904/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/miropt-test-tools/31c10cc09899749f/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/camino/fe180c270fad8608/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/camino/bdbfd9ef32c51655/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/wast/2e40ee8ea0531eca/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/semver/67e1102da9903185/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/semver/d385bb6f325b9855/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/rustix/6a0fa86248894268/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/rustix/352cd526473ad539/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/regex-syntax/99a86fbd3449d84b/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/anstyle-lossy/97d37ead1455aa4e/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/unicode-width/629f8dfefd81dafa/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/gimli/ede8df4878dbbca4/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/miniz_oxide/51ba50bed91322c0/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/build_helper/3b8918dcf221ef11/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/strsim/c2e675a39593f375/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/wit-parser/52bf9cf1f706ae7b/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/nu-ansi-term/ed9401c73420c4b9/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/ryu/ab36228901aa3162/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/pin-project-lite/5ac859a8f4270455/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/id-arena/ed21d23d92905e52/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/home/46cb7cccdba832c4/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/wasi-preview1-component-adapter-provider/36950795a261bbd0/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/lock_api/ec6f06f1e41d9996/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/libc/01af64669632c434/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/libc/62ef6adc1b838ff1/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/crossbeam-epoch/99be7695060e1512/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/crossbeam-epoch/13b5eadf7ce6cf7f/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/flate2/e01c1fd020741452/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/similar/804bc82e97a1ac1e/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/matchers/d5debfa340c92ff2/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/equivalent/2bf531dda633354a/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/serde_core/70d35fda45aa0862/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/serde_core/ed2dce56d02068b3/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/serde_core/a4cdada9540ccc66/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/serde_core/52e2e2da5f26e814/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/memchr/b3cb699922c61672/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/memchr/15a36a63432354ba/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/diff/958208f4ee548ee0/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/bitflags/caa21ad63d38aa7f/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/leb128fmt/17b683095d97e446/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/lexopt/383aec1bc84fd2bf/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/html-escape/e10047bddf69a68b/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/thread_local/5793adc9f8087cbe/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/simd-adler32/738c7c4cab66e3d1/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/rustfix/cd32e91a31133b1b/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/regex-automata/9a5b2b11f71acdf3/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/regex-automata/b9222180b123289e/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/thiserror/94790af23f90f096/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/thiserror/21c3c7f596e2b054/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/colored/6254eeafb48c29df/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/tracing-log/14b73ab3fcc291d1/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/rayon-core/025335d973e577e6/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/rayon-core/d31a41dfa8ebbcd5/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/clap_builder/12297b7ab588cb32/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/clap_builder/1fb6a500fd02658e/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/serde/abdc9fd776b1c0dd/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/serde/7f4c3320df42d1c8/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/serde/46209502a977a221/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/serde/1ab77ec74db9ce4c/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/serde/6dc69d7beacbb504/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/serde/571561cd9ec1d262/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/same-file/4745e6ed58347cd8/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/clap/92488705f4f8d67c/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/clap/4e806f78aa2f7182/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/clap/2eb115f2408d31e7/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/twox-hash/14bbe15ba4ebe956/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/either/189927ef80ac616f/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/run_make_support/8c4788d1ef71fa2d/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/unified-diff/4d56a1c84ef5ff39/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/anstream/125c43b5abbf58fe/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/rayon/18514582221b5e1a/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/wasm-component-ld-wrapper/6b24ea48f703a514/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/cfg-if/3dac9b76e42e1c31/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/aho-corasick/d1bdd511c6f14f54/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/log/ad92df7ff97dc712/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/log/b7ea899686d52be7/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/fastrand/9b10df5da3f0ba07/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/sharded-slab/701b874a9d8090ed/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/lld-wrapper/2b01c093a8af7643/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/anstyle/7f83b1fa26dac4ac/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/crossbeam-deque/5051befb1ed8c8c3/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/utf8-width/7c1a624f6777736c/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/crossbeam-utils/1dd1464409ddb263/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/crossbeam-utils/2b42a3cb3ab85e72/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/anstyle-svg/bf4a7b435c4fc736/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/rustdoc-json-types/c3243de709a9caba/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/wit-component/ec26781410570cf5/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/lazy_static/34aa33ee3de7f0bf/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/smallvec/03c79c6282e861a2/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/anstyle-parse/341771ccca003777/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/anstyle-parse/dfde1f1634390a5d/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/tracing/df9f18094f9b7f74/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/tracing/3f67c4f2810717dc/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/linux-raw-sys/70610e50fc8d8889/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/bstr/41bc292081c0938f/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/wasm-component-ld/f24bc7b5668f2ee7/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/once_cell/673253e48fbdf645/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/once_cell/085e6bca3440dac0/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/wasm-encoder/e144a20769e58bab/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/scopeguard/681308e030ba250f/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/foldhash/1eda21dc393d4275/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/indexmap/5b40b4b9a90d9e2d/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/indexmap/f342e36edba65ceb/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/indexmap/c40f8f64f7ef1f8c/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/utf8parse/bce313d6354d291b/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/parking_lot_core/c3e5ca6836ffd7aa/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/parking_lot_core/1bbde61d698dcf28/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/getrandom/4c89ca705145f68e/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/getrandom/9569bb163d3eaf85/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/ruzstd/528f710a4e52ce18/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/glob/a24678615c5bb1e8/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/tracing-core/0d9f161f606d643e/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/tracing-core/3890c69a18222582/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/itoa/23671a0fb0e561fb/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/fnv/e2bcb80092176fa3/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/heck/d3382151a6bdcea1/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/anyhow/404d7aea713835df/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/serde_json/08adc21a4135345d/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/crc32fast/d8866d992bfeb5a3/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/object/568d043dd395f9a5/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/unicode-ident/d328bebad7fba1e8/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/camino/f76cc4931dd43b37/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/rustix/74e0940898b1dbd8/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/thiserror-impl/a25693605f497a2d/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/serde_derive/709d21dffd2b6dd7/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/serde_derive/ac13d48210959d15/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/serde_derive/8e3954a053463383/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/tracing-attributes/cfc0af48b6604a34/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/proc-macro2/cc51e7f2b563ec5a/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/proc-macro2/c050f6e54c55c71d/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/proc-macro2/4d2f873096f7c755/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/proc-macro2/16786004ca9508fd/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/proc-macro2/a66bff7d5039ac61/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/proc-macro2/a81c7aa6e11837c3/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/libc/7ef9a45fc7ae7fc0/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/crossbeam-epoch/7f129f3538b3a360/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/serde_core/1555127993f7a381/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/serde_core/c5ffe4e3bdf3b926/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/quote/3f601622cf34cdba/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/quote/8497a78dc828f53e/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/quote/e804f208de340def/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/quote/876fe4b8c242f1aa/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/quote/bca9ccd95fc35f8e/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/quote/c35a232119ca7177/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/syn/2c0ba48bf9e1bc26/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/syn/b8882cd9118416b9/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/syn/a376c1a180b73eb0/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/thiserror/944237dde78465b5/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/rayon-core/bd09f129a4ccb5f1/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/serde/d3c0ae23ed88ca96/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/serde/2beb5b4935f4b913/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/serde/dc8eda69db032e86/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/crossbeam-utils/758d11cf714827dc/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/parking_lot_core/95e774076004deb8/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/getrandom/6111bb914f434fc8/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/clap_derive/d96f1e9e3b95ee71/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/clap_derive/b2739000dbc86d01/out" "--extern" "run_make_support=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/librun_make_support.rlib" "--edition=2024" "/checkout/tests/run-make/wasm-spurious-import/rmake.rs" "-Cprefer-dynamic" "-Dunused_must_use"
stdout: none
--- stderr -------------------------------
error[E0609]: no field `module` on type `Imports<'_>`
##[error]  --> /checkout/tests/run-make/wasm-spurious-import/rmake.rs:25:33
   |
25 |                 imports.entry(i.module).or_insert(Vec::new()).push((i.name, i.ty));
   |                                 ^^^^^^ unknown field

error[E0609]: no field `name` on type `Imports<'_>`
##[error]  --> /checkout/tests/run-make/wasm-spurious-import/rmake.rs:25:71
   |
25 |                 imports.entry(i.module).or_insert(Vec::new()).push((i.name, i.ty));
   |                                                                       ^^^^ unknown field

error[E0609]: no field `ty` on type `Imports<'_>`
##[error]  --> /checkout/tests/run-make/wasm-spurious-import/rmake.rs:25:79
   |
25 |                 imports.entry(i.module).or_insert(Vec::new()).push((i.name, i.ty));
   |                                                                               ^^ unknown field

error: aborting due to 3 previous errors

For more information about this error, try `rustc --explain E0609`.
------------------------------------------

---- [run-make] tests/run-make/wasm-spurious-import stdout end ----
---- [run-make] tests/run-make/wasm-symbols-different-module stdout ----
------rustc stdout------------------------------

------rustc stderr------------------------------
error[E0609]: no field `module` on type `Imports<'_>`
##[error]  --> /checkout/tests/run-make/wasm-symbols-different-module/rmake.rs:35:33
   |
35 |                 imports.entry(i.module).or_insert(HashSet::new()).insert(i.name);
   |                                 ^^^^^^ unknown field

error[E0609]: no field `name` on type `Imports<'_>`
##[error]  --> /checkout/tests/run-make/wasm-symbols-different-module/rmake.rs:35:76
   |
35 |                 imports.entry(i.module).or_insert(HashSet::new()).insert(i.name);
   |                                                                            ^^^^ unknown field

error: aborting due to 2 previous errors

For more information about this error, try `rustc --explain E0609`.

------------------------------------------

error: run-make test failed: could not build `rmake.rs` recipe
status: exit status: 1
command: RUSTC_BOOTSTRAP="-1" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/rustc" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/run-make/wasm-symbols-different-module/rmake" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/rustc-hash/26ab4765364ec21a/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/clap_lex/17a0fe0c5c3e0bc0/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/tracing-subscriber/dbc5e3dfe11fed77/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/tracing-subscriber/49f31bad275c5161/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/wasm-metadata/3ba3aa9c9749b819/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/compiletest/741d7fca8d3e9a04/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/compiletest/8467bedc4602589a/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/bumpalo/181a205c1d5737a1/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/walkdir/80cd4ef88609e079/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/colorchoice/0ac2e114f4c75e96/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/anyhow/a716ac609530488b/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/anyhow/088b62232ff3284f/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/shim_utils/d70611d6fdbe1c17/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/serde_json/113761a86894063c/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/serde_json/b5d6d90a80d6c63e/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/serde_json/8b4cf61b2abbfadb/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/parking_lot/a276914180a4c12f/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/regex/414cefb594139708/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/regex/88ab2924c8c1eac6/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/tempfile/794232f8ef3e296f/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/tempfile/0122a9cb591f8f20/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/crc32fast/a1ab36eb0c00a176/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/crc32fast/72b0e815cd6b29ba/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/object/8d862286a696a666/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/object/90a105f63a3fd373/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/wat/3c731e081ef333d8/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/hashbrown/f5b24d09b82b038a/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/hashbrown/d8208342c8e99ae4/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/anstyle-query/52901cbf8bba20af/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/unicode-ident/4a820f0e00f482e7/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/llvm-bitcode-linker/7cdc962b8f1e6a88/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/llvm-bitcode-linker/92c19e974da602b7/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/stable_deref_trait/df76e5bd2b718b96/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/adler2/b77b45e36a0c4291/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/is_terminal_polyfill/8abad9f09c0d4527/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/wasmparser/6e99650c19af4bdf/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/wasmparser/7e2458bc35179904/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/miropt-test-tools/31c10cc09899749f/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/camino/fe180c270fad8608/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/camino/bdbfd9ef32c51655/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/wast/2e40ee8ea0531eca/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/semver/67e1102da9903185/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/semver/d385bb6f325b9855/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/rustix/6a0fa86248894268/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/rustix/352cd526473ad539/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/regex-syntax/99a86fbd3449d84b/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/anstyle-lossy/97d37ead1455aa4e/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/unicode-width/629f8dfefd81dafa/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/gimli/ede8df4878dbbca4/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/miniz_oxide/51ba50bed91322c0/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/build_helper/3b8918dcf221ef11/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/strsim/c2e675a39593f375/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/wit-parser/52bf9cf1f706ae7b/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/nu-ansi-term/ed9401c73420c4b9/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/ryu/ab36228901aa3162/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/pin-project-lite/5ac859a8f4270455/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/id-arena/ed21d23d92905e52/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/home/46cb7cccdba832c4/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/wasi-preview1-component-adapter-provider/36950795a261bbd0/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/lock_api/ec6f06f1e41d9996/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/libc/01af64669632c434/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/libc/62ef6adc1b838ff1/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/crossbeam-epoch/99be7695060e1512/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/crossbeam-epoch/13b5eadf7ce6cf7f/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/flate2/e01c1fd020741452/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/similar/804bc82e97a1ac1e/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/matchers/d5debfa340c92ff2/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/equivalent/2bf531dda633354a/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/serde_core/70d35fda45aa0862/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/serde_core/ed2dce56d02068b3/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/serde_core/a4cdada9540ccc66/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/serde_core/52e2e2da5f26e814/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/memchr/b3cb699922c61672/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/memchr/15a36a63432354ba/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/diff/958208f4ee548ee0/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/bitflags/caa21ad63d38aa7f/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/leb128fmt/17b683095d97e446/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/lexopt/383aec1bc84fd2bf/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/html-escape/e10047bddf69a68b/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/thread_local/5793adc9f8087cbe/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/simd-adler32/738c7c4cab66e3d1/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/rustfix/cd32e91a31133b1b/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/regex-automata/9a5b2b11f71acdf3/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/regex-automata/b9222180b123289e/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/thiserror/94790af23f90f096/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/thiserror/21c3c7f596e2b054/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/colored/6254eeafb48c29df/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/tracing-log/14b73ab3fcc291d1/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/rayon-core/025335d973e577e6/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/rayon-core/d31a41dfa8ebbcd5/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/clap_builder/12297b7ab588cb32/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/clap_builder/1fb6a500fd02658e/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/serde/abdc9fd776b1c0dd/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/serde/7f4c3320df42d1c8/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/serde/46209502a977a221/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/serde/1ab77ec74db9ce4c/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/serde/6dc69d7beacbb504/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/serde/571561cd9ec1d262/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/same-file/4745e6ed58347cd8/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/clap/92488705f4f8d67c/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/clap/4e806f78aa2f7182/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/clap/2eb115f2408d31e7/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/twox-hash/14bbe15ba4ebe956/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/either/189927ef80ac616f/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/run_make_support/8c4788d1ef71fa2d/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/unified-diff/4d56a1c84ef5ff39/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/anstream/125c43b5abbf58fe/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/rayon/18514582221b5e1a/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/wasm-component-ld-wrapper/6b24ea48f703a514/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/cfg-if/3dac9b76e42e1c31/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/aho-corasick/d1bdd511c6f14f54/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/log/ad92df7ff97dc712/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/log/b7ea899686d52be7/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/fastrand/9b10df5da3f0ba07/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/sharded-slab/701b874a9d8090ed/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/lld-wrapper/2b01c093a8af7643/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/anstyle/7f83b1fa26dac4ac/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/crossbeam-deque/5051befb1ed8c8c3/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/utf8-width/7c1a624f6777736c/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/crossbeam-utils/1dd1464409ddb263/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/crossbeam-utils/2b42a3cb3ab85e72/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/anstyle-svg/bf4a7b435c4fc736/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/rustdoc-json-types/c3243de709a9caba/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/wit-component/ec26781410570cf5/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/lazy_static/34aa33ee3de7f0bf/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/smallvec/03c79c6282e861a2/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/anstyle-parse/341771ccca003777/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/anstyle-parse/dfde1f1634390a5d/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/tracing/df9f18094f9b7f74/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/tracing/3f67c4f2810717dc/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/linux-raw-sys/70610e50fc8d8889/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/bstr/41bc292081c0938f/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/wasm-component-ld/f24bc7b5668f2ee7/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/once_cell/673253e48fbdf645/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/once_cell/085e6bca3440dac0/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/wasm-encoder/e144a20769e58bab/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/scopeguard/681308e030ba250f/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/foldhash/1eda21dc393d4275/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/indexmap/5b40b4b9a90d9e2d/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/indexmap/f342e36edba65ceb/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/indexmap/c40f8f64f7ef1f8c/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/utf8parse/bce313d6354d291b/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/parking_lot_core/c3e5ca6836ffd7aa/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/parking_lot_core/1bbde61d698dcf28/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/getrandom/4c89ca705145f68e/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/getrandom/9569bb163d3eaf85/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/ruzstd/528f710a4e52ce18/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/glob/a24678615c5bb1e8/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/tracing-core/0d9f161f606d643e/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/tracing-core/3890c69a18222582/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/itoa/23671a0fb0e561fb/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/build/fnv/e2bcb80092176fa3/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/heck/d3382151a6bdcea1/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/anyhow/404d7aea713835df/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/serde_json/08adc21a4135345d/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/crc32fast/d8866d992bfeb5a3/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/object/568d043dd395f9a5/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/unicode-ident/d328bebad7fba1e8/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/camino/f76cc4931dd43b37/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/rustix/74e0940898b1dbd8/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/thiserror-impl/a25693605f497a2d/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/serde_derive/709d21dffd2b6dd7/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/serde_derive/ac13d48210959d15/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/serde_derive/8e3954a053463383/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/tracing-attributes/cfc0af48b6604a34/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/proc-macro2/cc51e7f2b563ec5a/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/proc-macro2/c050f6e54c55c71d/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/proc-macro2/4d2f873096f7c755/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/proc-macro2/16786004ca9508fd/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/proc-macro2/a66bff7d5039ac61/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/proc-macro2/a81c7aa6e11837c3/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/libc/7ef9a45fc7ae7fc0/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/crossbeam-epoch/7f129f3538b3a360/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/serde_core/1555127993f7a381/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/serde_core/c5ffe4e3bdf3b926/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/quote/3f601622cf34cdba/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/quote/8497a78dc828f53e/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/quote/e804f208de340def/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/quote/876fe4b8c242f1aa/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/quote/bca9ccd95fc35f8e/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/quote/c35a232119ca7177/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/syn/2c0ba48bf9e1bc26/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/syn/b8882cd9118416b9/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/syn/a376c1a180b73eb0/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/thiserror/944237dde78465b5/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/rayon-core/bd09f129a4ccb5f1/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/serde/d3c0ae23ed88ca96/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/serde/2beb5b4935f4b913/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/serde/dc8eda69db032e86/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/crossbeam-utils/758d11cf714827dc/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/parking_lot_core/95e774076004deb8/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/getrandom/6111bb914f434fc8/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/clap_derive/d96f1e9e3b95ee71/out" "-Ldependency=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/release/build/clap_derive/b2739000dbc86d01/out" "--extern" "run_make_support=/checkout/obj/build/x86_64-unknown-linux-gnu/bootstrap-tools/x86_64-unknown-linux-gnu/release/librun_make_support.rlib" "--edition=2024" "/checkout/tests/run-make/wasm-symbols-different-module/rmake.rs" "-Cprefer-dynamic" "-Dunused_must_use"
stdout: none
--- stderr -------------------------------
error[E0609]: no field `module` on type `Imports<'_>`
##[error]  --> /checkout/tests/run-make/wasm-symbols-different-module/rmake.rs:35:33
   |
35 |                 imports.entry(i.module).or_insert(HashSet::new()).insert(i.name);
   |                                 ^^^^^^ unknown field

error[E0609]: no field `name` on type `Imports<'_>`
##[error]  --> /checkout/tests/run-make/wasm-symbols-different-module/rmake.rs:35:76
   |
35 |                 imports.entry(i.module).or_insert(HashSet::new()).insert(i.name);
   |                                                                            ^^^^ unknown field

error: aborting due to 2 previous errors

For more information about this error, try `rustc --explain E0609`.

@rust-bors rust-bors Bot 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 Aug 9, 2026
@rust-bors

rust-bors Bot commented Aug 9, 2026

Copy link
Copy Markdown
Contributor

💔 Test for 74dbe2d failed: CI. Failed job:

@jhpratt jhpratt closed this Aug 9, 2026
@rustbot rustbot removed the S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. label Aug 9, 2026
@rust-bors

rust-bors Bot commented Aug 9, 2026

Copy link
Copy Markdown
Contributor

PR #160529, which is a member of this rollup, was unapproved.

@rust-bors rust-bors Bot added the S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. label Aug 9, 2026
@jhpratt
jhpratt deleted the rollup-Mfq8vBr branch August 9, 2026 03:51
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

A-CI Area: Our Github Actions CI A-LLVM Area: Code generation parts specific to LLVM. Both correctness bugs and optimization-related issues. A-run-make Area: port run-make Makefiles to rmake.rs A-tidy Area: The tidy tool rollup A PR which is a rollup S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. 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-infra Relevant to the infrastructure team, which will review and decide on the PR/issue. T-rustdoc Relevant to the rustdoc team, which will review and decide on the PR/issue. T-rustdoc-frontend Relevant to the rustdoc-frontend team, which will review and decide on the web UI/UX output.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

8 participants