Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Rollup of 12 pull requests #138146

Closed
wants to merge 35 commits into from

Conversation

workingjubilee
Copy link
Member

Successful merges:

r? @ghost
@rustbot modify labels: rollup

Create a similar rollup

pheki and others added 30 commits February 6, 2025 23:42
All other methods in this file have #[inline] and these methods are very
similar to those of &[u8] which are already inlined here.
When concatenating two WTF-8 strings, surrogate pairs at the boundaries
need to be joined. However, since UTF-8 strings cannot contain surrogate
halves, this check can be skipped when one string is UTF-8. Specialize
`OsString::push` to use a more efficient concatenation in this case.

Unfortunately, a specialization for `T: AsRef<str>` conflicts with
`T: AsRef<OsStr>`, so stamp out string types with a macro.
The WTF-8 version of `OsString` tracks whether it is known to be valid
UTF-8 with its `is_known_utf8` field. Specialize `From<AsRef<OsStr>>` so
this can be set for UTF-8 string types.
This patch makes BufReader::peek()'s doctest call read_more() to refill
the buffer before the inner reader hits EOF. This exposes a bug in
read_more() that causes an out-of-bounds slice access and segfault.
Buffer::read_more() is supposed to refill the buffer without discarding
its contents, which are in the range `pos .. filled`.

It mistakenly borrows the range `pos ..`, fills that, and then
increments `filled` by the amount read. This overwrites the buffer's
existing contents and sets `filled` to a too-large value that either
exposes uninitialized bytes or walks off the end of the buffer entirely.

This patch makes it correctly fill only the unfilled portion of the
buffer, which should maintain all the type invariants and fix the test
failure introduced in commit b119671.
As per rust-lang#117276, this moves the platform definitions of `Stdout` and friends into `sys`. This PR also unifies the UNIX and Hermit implementations and moves the `__rust_print_err` function needed by libunwind on SGX into the dedicated module for such helper functions.
While it shares more than zero code with the SysV x86-32 ABI impl,
there is no particular reason to organize wildly different ABIs
using if-else in the same function.
For `broken-pipe-no-ice` until std `anonymous_pipe` stabilizes.
…viper

Revert vita's c_char back to i8

# Description

Hi!

rust-lang#132975 changed the definition of `c_char` from i8 to u8 for most ARM targets. While that would usually be correct, [VITASDK uses signed chars by default](https://github.com/vitasdk/buildscripts/blob/master/patches/gcc/0001-gcc-10.patch#L33-L34). The Clang definitions are incorrect because Clang is not (yet?) supported by the vita commmunity / `VITADSK`, On the Rust side, the pre-compiled libraries the user can link to are all compiled using vita's `gcc` and [we set `TARGET_CC` and `TARGET_CXX`](https://github.com/vita-rust/cargo-vita/blob/d564a132cbd43947118c0d6d0ebfbea7d1dd7fa7/src/commands/build.rs#L230) in `cargo vita` for build scripts using `cc`.

I'm creating it as a draft PR so that we can discuss it and possibly get it approved here, but wait to merge the [libc side](rust-lang/libc#4258) and get a libc version first, as having the definitions out of sync breaks std. As a nightly-only target it can be confusing/frustrating for new users when the latest nightly, which is the default, is broken.
std: move stdio to `sys`

As per rust-lang#117276, this moves the platform definitions of `Stdout` and friends into `sys`. This PR also unifies the UNIX and Hermit implementations and moves the `__rust_print_err` function needed by libunwind on SGX into the dedicated module for such helper functions.
…rsors, r=joboet

Override default `Write` methods for cursor-like types

Override the default `io::Write` methods for cursor-like types to provide more efficient versions.

Writes to resizable containers already write everything, so implement `write_all` and `write_all_vectored` in terms of those. For fixed-sized containers, cut out unnecessary error checking and looping for those same methods.

| `impl Write for T`              | `vectored` | `all` | `all_vectored` | `fmt`   |
| ------------------------------- | ---------- | ----- | -------------- | ------- |
| `&mut [u8]`                     | Y          | Y     | new            |         |
| `Vec<u8>`                       | Y          | Y     | new            | rust-lang#137762 |
| `VecDeque<u8>`                  | Y          | Y     | new            | rust-lang#137762 |
| `std::io::Cursor<&mut [u8]>`    | Y          | new   | new            |         |
| `std::io::Cursor<&mut Vec<u8>>` | Y          | new   | new            | rust-lang#137762 |
| `std::io::Cursor<Vec<u8>>`      | Y          | new   | new            | rust-lang#137762 |
| `std::io::Cursor<Box<[u8]>>`    | Y          | new   | new            |         |
| `std::io::Cursor<[u8; N]>`      | Y          | new   | new            |         |
| `core::io::BorrowedCursor<'_>`  | new        | new   | new            |         |

Tracked in rust-lang#136756.

# Open questions

Is it guaranteed by `Write::write_all` that the maximal write is performed when not everything can be written? Its documentation describes the behavior of the default implementation, which writes until a 0-length write is encountered, thus implying that a maximal write is expected. In contrast, `Read::read_exact` declares that the contents of the buffer are unspecified for short reads. If it were allowed, these cursor-like types could bail on the write altogether if it has insufficient capacity.
…pl, r=jieyouxu

compiler: factor Windows x86-32 ABI impl into its own file

While it shares more than zero code with the SysV x86-32 ABI impl, there is no particular reason to organize wildly different ABIs using if-else in the same function.
Windows: Fix error in `fs::rename` on Windows 1607

Fixes rust-lang#137499

There's a bug in our Windows implementation of `fs::rename` that only manifests on a specific version of Windows. Both newer and older versions of Windows work.

I took the safest route to fixing this by using the old `MoveFileExW` function to implement this and only falling back to the new behaviour if that fails. This is similar to what is done in `unlink` (just above this function).

try-job: dist-x86_64-mingw
try-job: dist-x86_64-msvc
Prevent `rmake.rs` from using unstable features, and fix 3 run-make tests that currently do

Addresses (mostly) rust-lang#137532.
Follow-up to rust-lang#137373.

### Summary

- Fix 3 run-make tests that currently use unstable features:
    1. `tests/run-make/issue-107495-archive-permissions/rmake.rs` uses `#![feature(rustc_private)]` for `libc` on `unix`, but `run_make_support` already exports `libc`, so just use that.
    2. `tests/run-make/cross-lang-lto/rmake.rs` uses `#![feature(path_file_prefix)]` for convenience, replaced with similar filename prefix logic.
    3. `tests/run-make/broken-pipe-no-ice/rmake.rs` uses `#![feature(anonymous_pipe)]` for anonymous pipes. This is more complicated[^race-condition], and I decided to temporarily introduce a dependency on [`os_pipe`] before std's `anonymous_pipe` library feature is stabilized[^pipe-stab]. I left a FIXME tracked by rust-lang#137532 to make the switch once `anonymous_pipe` stabilizes and reaches beta.
- Use `RUSTC_BOOTSTRAP=-1` when building `rmake.rs` to have the stage 0 rustc reject any unstable features used in `rmake.rs`.

- The requirement that `rmake.rs` may not use any unstable features is now documented in rustc-dev-guide.
- This PR does not impose `RUSTC_BOOTSTRAP=-1` when building `run-make-support`, but I suppose we could.

r? `@Kobzol`

[`os_pipe`]: https://github.com/oconnor663/os_pipe.rs

[^race-condition]: We can't just try to spawn `rustc` and immediate close the stderr handle because of race condition, as there's no guarantee `rustc` will not try to print to stderr before the handle gets closed.
[^pipe-stab]: In-progress stabilization PR over at rust-lang#135822.
…joboet

Specialize `OsString::push` and `OsString as From` for UTF-8

When concatenating two WTF-8 strings, surrogate pairs at the boundaries need to be joined. However, since UTF-8 strings cannot contain surrogate halves, this check can be skipped when one string is UTF-8. Specialize `OsString::push` to use a more efficient concatenation in this case.

The WTF-8 version of `OsString` tracks whether it is known to be valid UTF-8 with its `is_known_utf8` field. Specialize `From<AsRef<OsStr>>` so this can be set for UTF-8 string types.

Unfortunately, a specialization for `T: AsRef<str>` conflicts with `T: AsRef<OsStr>`, so stamp out string types with a macro.

r? `@ChrisDenton`
@rustbot rustbot added A-compiletest Area: The compiletest test runner A-run-make Area: port run-make Makefiles to rmake.rs A-rustc-dev-guide Area: rustc-dev-guide A-testsuite Area: The testsuite used to check the correctness of rustc O-hermit Operating System: Hermit O-SGX Target: SGX O-solid Operating System: SOLID O-unix Operating system: Unix-like O-wasi Operating system: Wasi, Webassembly System Interface O-wasm Target: WASM (WebAssembly), http://webassembly.org/ O-windows Operating system: Windows S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. T-bootstrap Relevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap) T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. T-libs Relevant to the library team, which will review and decide on the PR/issue. rollup A PR which is a rollup labels Mar 7, 2025
@workingjubilee
Copy link
Member Author

@bors r+ rollup=never p=5

@bors
Copy link
Contributor

bors commented Mar 7, 2025

📌 Commit 9872133 has been approved by workingjubilee

It is now in the queue for this repository.

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

bors commented Mar 7, 2025

⌛ Testing commit 9872133 with merge 3d7aff7...

bors added a commit to rust-lang-ci/rust that referenced this pull request Mar 7, 2025
…kingjubilee

Rollup of 12 pull requests

Successful merges:

 - rust-lang#136667 (Revert vita's c_char back to i8)
 - rust-lang#136780 (std: move stdio to `sys`)
 - rust-lang#137107 (Override default `Write` methods for cursor-like types)
 - rust-lang#137363 (compiler: factor Windows x86-32 ABI impl into its own file)
 - rust-lang#137528 (Windows: Fix error in `fs::rename` on Windows 1607)
 - rust-lang#137537 (Prevent `rmake.rs` from using unstable features, and fix 3 run-make tests that currently do)
 - rust-lang#137777 (Specialize `OsString::push` and `OsString as From` for UTF-8)
 - rust-lang#137832 (Fix crash in BufReader::peek())
 - rust-lang#137904 (Improve the generic MIR in the default `PartialOrd::le` and friends)
 - rust-lang#138115 (Suggest typo fix for static lifetime)
 - rust-lang#138125 (Simplify `printf` and shell format suggestions)
 - rust-lang#138129 (Stabilize const_char_classify, const_sockaddr_setters)

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

The job x86_64-msvc-1 failed! Check out the build log: (web) (plain)

Click to see the possible cause of the failure (guessed by this bot)
---- [run-make] tests\run-make\alloc-no-oom-handling stdout ----

error: run-make test failed: could not build `rmake.rs` recipe
status: exit code: 1
command: "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0\\bin\\rustc.exe" "-o" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\test\\run-make\\alloc-no-oom-handling\\rmake.exe" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\deps" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\release\\deps" "--extern" "run_make_support=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\librun_make_support.rlib" "--edition=2021" "D:\\a\\rust\\rust\\tests\\run-make\\alloc-no-oom-handling\\rmake.rs" "-Cprefer-dynamic" "-Dunused_must_use"
--- stderr -------------------------------
error: linking with `link.exe` failed: exit code: 1181
  |
  |
  = note: "C:\\Program Files\\Microsoft Visual Studio\\2022\\Enterprise\\VC\\Tools\\MSVC\\14.43.34808\\bin\\HostX64\\x64\\link.exe" "/NOLOGO" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustc3wfH0b\\symbols.o" "<1 object files omitted>" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release/{librun_make_support.rlib}.rlib" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\deps/{libwasmparser-e17ddfbaf3cb6dbd.rlib,libbitflags-f8aa5ad34c8e2192.rlib,libserde_json-44b0399bb82cc3d3.rlib,libitoa-1aa11874bb14f79c.rlib,libryu-00ecf1edd3f1aa1e.rlib,libos_pipe-ccd1d19fd67d00bd.rlib,libwindows_sys-392233c961911690.rlib,libwindows_targets-1d0a7b4087b1f694.rlib,liblibc-f67bd989609867e9.rlib,libgimli-c8cdb048c278fda4.rlib,libfallible_iterator-fef16def6ec0eeff.rlib,libindexmap-893a04b27834a2ed.rlib,libequivalent-9793e896359164a2.rlib,libhashbrown-0d302631dbd6fe4f.rlib,libstable_deref_trait-72c93ece406d471b.rlib,libbstr-bed2534388c6815c.rlib,libobject-c6e3523ecf5a2db0.rlib,libruzstd-66678ea31a86f63c.rlib,libtwox_hash-3936dccc26266be8.rlib,libstatic_assertions-dbfe7f0aa3fa4065.rlib,libflate2-697c19cbed054ceb.rlib,libminiz_oxide-27fd8e4dc95ec84b.rlib,libadler2-07b36529be4a3513.rlib,libcrc32fast-437f8e19f397e866.rlib,libcfg_if-fca6657bc1ff4d90.rlib,libsimilar-6f15f3c784de51af.rlib,libregex-d89718c8f0c97590.rlib,libregex_automata-138ad0a82e2567f6.rlib,libaho_corasick-94f4335b9e39faa5.rlib,libmemchr-cbfe07f1e8672f04.rlib,libregex_syntax-5938dfb9732fae4f.rlib,libbuild_helper-4c9261a7b94adf93.rlib,libserde-65a76ab0d9b64a93.rlib}.rlib" "<sysroot>\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\std-f6e28d62d520a8c0.dll.lib" "<sysroot>\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib/{libcompiler_builtins-*}.rlib" "windows.0.52.0.lib" "legacy_stdio_definitions.lib" "kernel32.lib" "kernel32.lib" "advapi32.lib" "ntdll.lib" "userenv.lib" "ws2_32.lib" "dbghelp.lib" "/defaultlib:msvcrt" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustc3wfH0b\\api-ms-win-core-synch-l1-2-0.dll_imports_indirect.lib" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustc3wfH0b\\bcryptprimitives.dll_imports_indirect.lib" "/NXCOMPAT" "/OUT:D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\test\\run-make\\alloc-no-oom-handling\\rmake.exe" "/OPT:REF,NOICF" "/DEBUG" "/PDBALTPATH:%_PDB%" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\intrinsic.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\liballoc.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\libcore.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\libstd.natvis"
  = note: some arguments are omitted. use `--verbose` to show all linker arguments
  = note: LINK : fatal error LNK1181: cannot open input file 'windows.0.52.0.lib'␍

error: aborting due to 1 previous error
------------------------------------------



---- [run-make] tests\run-make\alloc-no-rc stdout ----

error: run-make test failed: could not build `rmake.rs` recipe
status: exit code: 1
command: "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0\\bin\\rustc.exe" "-o" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\test\\run-make\\alloc-no-rc\\rmake.exe" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\deps" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\release\\deps" "--extern" "run_make_support=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\librun_make_support.rlib" "--edition=2021" "D:\\a\\rust\\rust\\tests\\run-make\\alloc-no-rc\\rmake.rs" "-Cprefer-dynamic" "-Dunused_must_use"
--- stderr -------------------------------
error: linking with `link.exe` failed: exit code: 1181
  |
  |
  = note: "C:\\Program Files\\Microsoft Visual Studio\\2022\\Enterprise\\VC\\Tools\\MSVC\\14.43.34808\\bin\\HostX64\\x64\\link.exe" "/NOLOGO" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcoellvr\\symbols.o" "<1 object files omitted>" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release/{librun_make_support.rlib}.rlib" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\deps/{libwasmparser-e17ddfbaf3cb6dbd.rlib,libbitflags-f8aa5ad34c8e2192.rlib,libserde_json-44b0399bb82cc3d3.rlib,libitoa-1aa11874bb14f79c.rlib,libryu-00ecf1edd3f1aa1e.rlib,libos_pipe-ccd1d19fd67d00bd.rlib,libwindows_sys-392233c961911690.rlib,libwindows_targets-1d0a7b4087b1f694.rlib,liblibc-f67bd989609867e9.rlib,libgimli-c8cdb048c278fda4.rlib,libfallible_iterator-fef16def6ec0eeff.rlib,libindexmap-893a04b27834a2ed.rlib,libequivalent-9793e896359164a2.rlib,libhashbrown-0d302631dbd6fe4f.rlib,libstable_deref_trait-72c93ece406d471b.rlib,libbstr-bed2534388c6815c.rlib,libobject-c6e3523ecf5a2db0.rlib,libruzstd-66678ea31a86f63c.rlib,libtwox_hash-3936dccc26266be8.rlib,libstatic_assertions-dbfe7f0aa3fa4065.rlib,libflate2-697c19cbed054ceb.rlib,libminiz_oxide-27fd8e4dc95ec84b.rlib,libadler2-07b36529be4a3513.rlib,libcrc32fast-437f8e19f397e866.rlib,libcfg_if-fca6657bc1ff4d90.rlib,libsimilar-6f15f3c784de51af.rlib,libregex-d89718c8f0c97590.rlib,libregex_automata-138ad0a82e2567f6.rlib,libaho_corasick-94f4335b9e39faa5.rlib,libmemchr-cbfe07f1e8672f04.rlib,libregex_syntax-5938dfb9732fae4f.rlib,libbuild_helper-4c9261a7b94adf93.rlib,libserde-65a76ab0d9b64a93.rlib}.rlib" "<sysroot>\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\std-f6e28d62d520a8c0.dll.lib" "<sysroot>\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib/{libcompiler_builtins-*}.rlib" "windows.0.52.0.lib" "legacy_stdio_definitions.lib" "kernel32.lib" "kernel32.lib" "advapi32.lib" "ntdll.lib" "userenv.lib" "ws2_32.lib" "dbghelp.lib" "/defaultlib:msvcrt" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcoellvr\\api-ms-win-core-synch-l1-2-0.dll_imports_indirect.lib" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcoellvr\\bcryptprimitives.dll_imports_indirect.lib" "/NXCOMPAT" "/OUT:D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\test\\run-make\\alloc-no-rc\\rmake.exe" "/OPT:REF,NOICF" "/DEBUG" "/PDBALTPATH:%_PDB%" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\intrinsic.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\liballoc.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\libcore.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\libstd.natvis"
  = note: some arguments are omitted. use `--verbose` to show all linker arguments
  = note: LINK : fatal error LNK1181: cannot open input file 'windows.0.52.0.lib'␍

error: aborting due to 1 previous error
------------------------------------------



---- [run-make] tests\run-make\a-b-a-linker-guard stdout ----

error: run-make test failed: could not build `rmake.rs` recipe
status: exit code: 1
command: "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0\\bin\\rustc.exe" "-o" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\test\\run-make\\a-b-a-linker-guard\\rmake.exe" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\deps" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\release\\deps" "--extern" "run_make_support=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\librun_make_support.rlib" "--edition=2021" "D:\\a\\rust\\rust\\tests\\run-make\\a-b-a-linker-guard\\rmake.rs" "-Cprefer-dynamic" "-Dunused_must_use"
--- stderr -------------------------------
error: linking with `link.exe` failed: exit code: 1181
  |
  |
  = note: "C:\\Program Files\\Microsoft Visual Studio\\2022\\Enterprise\\VC\\Tools\\MSVC\\14.43.34808\\bin\\HostX64\\x64\\link.exe" "/NOLOGO" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustc2UEOzX\\symbols.o" "<1 object files omitted>" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release/{librun_make_support.rlib}.rlib" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\deps/{libwasmparser-e17ddfbaf3cb6dbd.rlib,libbitflags-f8aa5ad34c8e2192.rlib,libserde_json-44b0399bb82cc3d3.rlib,libitoa-1aa11874bb14f79c.rlib,libryu-00ecf1edd3f1aa1e.rlib,libos_pipe-ccd1d19fd67d00bd.rlib,libwindows_sys-392233c961911690.rlib,libwindows_targets-1d0a7b4087b1f694.rlib,liblibc-f67bd989609867e9.rlib,libgimli-c8cdb048c278fda4.rlib,libfallible_iterator-fef16def6ec0eeff.rlib,libindexmap-893a04b27834a2ed.rlib,libequivalent-9793e896359164a2.rlib,libhashbrown-0d302631dbd6fe4f.rlib,libstable_deref_trait-72c93ece406d471b.rlib,libbstr-bed2534388c6815c.rlib,libobject-c6e3523ecf5a2db0.rlib,libruzstd-66678ea31a86f63c.rlib,libtwox_hash-3936dccc26266be8.rlib,libstatic_assertions-dbfe7f0aa3fa4065.rlib,libflate2-697c19cbed054ceb.rlib,libminiz_oxide-27fd8e4dc95ec84b.rlib,libadler2-07b36529be4a3513.rlib,libcrc32fast-437f8e19f397e866.rlib,libcfg_if-fca6657bc1ff4d90.rlib,libsimilar-6f15f3c784de51af.rlib,libregex-d89718c8f0c97590.rlib,libregex_automata-138ad0a82e2567f6.rlib,libaho_corasick-94f4335b9e39faa5.rlib,libmemchr-cbfe07f1e8672f04.rlib,libregex_syntax-5938dfb9732fae4f.rlib,libbuild_helper-4c9261a7b94adf93.rlib,libserde-65a76ab0d9b64a93.rlib}.rlib" "<sysroot>\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\std-f6e28d62d520a8c0.dll.lib" "<sysroot>\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib/{libcompiler_builtins-*}.rlib" "windows.0.52.0.lib" "legacy_stdio_definitions.lib" "kernel32.lib" "kernel32.lib" "advapi32.lib" "ntdll.lib" "userenv.lib" "ws2_32.lib" "dbghelp.lib" "/defaultlib:msvcrt" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustc2UEOzX\\api-ms-win-core-synch-l1-2-0.dll_imports_indirect.lib" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustc2UEOzX\\bcryptprimitives.dll_imports_indirect.lib" "/NXCOMPAT" "/OUT:D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\test\\run-make\\a-b-a-linker-guard\\rmake.exe" "/OPT:REF,NOICF" "/DEBUG" "/PDBALTPATH:%_PDB%" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\intrinsic.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\liballoc.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\libcore.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\libstd.natvis"
  = note: some arguments are omitted. use `--verbose` to show all linker arguments
  = note: LINK : fatal error LNK1181: cannot open input file 'windows.0.52.0.lib'␍

error: aborting due to 1 previous error
------------------------------------------



---- [run-make] tests\run-make\CURRENT_RUSTC_VERSION stdout ----

error: run-make test failed: could not build `rmake.rs` recipe
status: exit code: 1
command: "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0\\bin\\rustc.exe" "-o" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\test\\run-make\\CURRENT_RUSTC_VERSION\\rmake.exe" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\deps" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\release\\deps" "--extern" "run_make_support=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\librun_make_support.rlib" "--edition=2021" "D:\\a\\rust\\rust\\tests\\run-make\\CURRENT_RUSTC_VERSION\\rmake.rs" "-Cprefer-dynamic" "-Dunused_must_use"
--- stderr -------------------------------
error: linking with `link.exe` failed: exit code: 1181
  |
  |
  = note: "C:\\Program Files\\Microsoft Visual Studio\\2022\\Enterprise\\VC\\Tools\\MSVC\\14.43.34808\\bin\\HostX64\\x64\\link.exe" "/NOLOGO" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcCG2iJ7\\symbols.o" "<3 object files omitted>" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release/{librun_make_support.rlib}.rlib" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\deps/{libwasmparser-e17ddfbaf3cb6dbd.rlib,libbitflags-f8aa5ad34c8e2192.rlib,libserde_json-44b0399bb82cc3d3.rlib,libitoa-1aa11874bb14f79c.rlib,libryu-00ecf1edd3f1aa1e.rlib,libos_pipe-ccd1d19fd67d00bd.rlib,libwindows_sys-392233c961911690.rlib,libwindows_targets-1d0a7b4087b1f694.rlib,liblibc-f67bd989609867e9.rlib,libgimli-c8cdb048c278fda4.rlib,libfallible_iterator-fef16def6ec0eeff.rlib,libindexmap-893a04b27834a2ed.rlib,libequivalent-9793e896359164a2.rlib,libhashbrown-0d302631dbd6fe4f.rlib,libstable_deref_trait-72c93ece406d471b.rlib,libbstr-bed2534388c6815c.rlib,libobject-c6e3523ecf5a2db0.rlib,libruzstd-66678ea31a86f63c.rlib,libtwox_hash-3936dccc26266be8.rlib,libstatic_assertions-dbfe7f0aa3fa4065.rlib,libflate2-697c19cbed054ceb.rlib,libminiz_oxide-27fd8e4dc95ec84b.rlib,libadler2-07b36529be4a3513.rlib,libcrc32fast-437f8e19f397e866.rlib,libcfg_if-fca6657bc1ff4d90.rlib,libsimilar-6f15f3c784de51af.rlib,libregex-d89718c8f0c97590.rlib,libregex_automata-138ad0a82e2567f6.rlib,libaho_corasick-94f4335b9e39faa5.rlib,libmemchr-cbfe07f1e8672f04.rlib,libregex_syntax-5938dfb9732fae4f.rlib,libbuild_helper-4c9261a7b94adf93.rlib,libserde-65a76ab0d9b64a93.rlib}.rlib" "<sysroot>\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\std-f6e28d62d520a8c0.dll.lib" "<sysroot>\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib/{libcompiler_builtins-*}.rlib" "windows.0.52.0.lib" "legacy_stdio_definitions.lib" "kernel32.lib" "kernel32.lib" "advapi32.lib" "ntdll.lib" "userenv.lib" "ws2_32.lib" "dbghelp.lib" "/defaultlib:msvcrt" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcCG2iJ7\\api-ms-win-core-synch-l1-2-0.dll_imports_indirect.lib" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcCG2iJ7\\bcryptprimitives.dll_imports_indirect.lib" "/NXCOMPAT" "/OUT:D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\test\\run-make\\CURRENT_RUSTC_VERSION\\rmake.exe" "/OPT:REF,NOICF" "/DEBUG" "/PDBALTPATH:%_PDB%" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\intrinsic.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\liballoc.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\libcore.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\libstd.natvis"
  = note: some arguments are omitted. use `--verbose` to show all linker arguments
  = note: LINK : fatal error LNK1181: cannot open input file 'windows.0.52.0.lib'␍

error: aborting due to 1 previous error
------------------------------------------



---- [run-make] tests\run-make\alloc-no-sync stdout ----

error: run-make test failed: could not build `rmake.rs` recipe
status: exit code: 1
command: "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0\\bin\\rustc.exe" "-o" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\test\\run-make\\alloc-no-sync\\rmake.exe" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\deps" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\release\\deps" "--extern" "run_make_support=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\librun_make_support.rlib" "--edition=2021" "D:\\a\\rust\\rust\\tests\\run-make\\alloc-no-sync\\rmake.rs" "-Cprefer-dynamic" "-Dunused_must_use"
--- stderr -------------------------------
error: linking with `link.exe` failed: exit code: 1181
  |
  |
  = note: "C:\\Program Files\\Microsoft Visual Studio\\2022\\Enterprise\\VC\\Tools\\MSVC\\14.43.34808\\bin\\HostX64\\x64\\link.exe" "/NOLOGO" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcQ7FRZv\\symbols.o" "<1 object files omitted>" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release/{librun_make_support.rlib}.rlib" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\deps/{libwasmparser-e17ddfbaf3cb6dbd.rlib,libbitflags-f8aa5ad34c8e2192.rlib,libserde_json-44b0399bb82cc3d3.rlib,libitoa-1aa11874bb14f79c.rlib,libryu-00ecf1edd3f1aa1e.rlib,libos_pipe-ccd1d19fd67d00bd.rlib,libwindows_sys-392233c961911690.rlib,libwindows_targets-1d0a7b4087b1f694.rlib,liblibc-f67bd989609867e9.rlib,libgimli-c8cdb048c278fda4.rlib,libfallible_iterator-fef16def6ec0eeff.rlib,libindexmap-893a04b27834a2ed.rlib,libequivalent-9793e896359164a2.rlib,libhashbrown-0d302631dbd6fe4f.rlib,libstable_deref_trait-72c93ece406d471b.rlib,libbstr-bed2534388c6815c.rlib,libobject-c6e3523ecf5a2db0.rlib,libruzstd-66678ea31a86f63c.rlib,libtwox_hash-3936dccc26266be8.rlib,libstatic_assertions-dbfe7f0aa3fa4065.rlib,libflate2-697c19cbed054ceb.rlib,libminiz_oxide-27fd8e4dc95ec84b.rlib,libadler2-07b36529be4a3513.rlib,libcrc32fast-437f8e19f397e866.rlib,libcfg_if-fca6657bc1ff4d90.rlib,libsimilar-6f15f3c784de51af.rlib,libregex-d89718c8f0c97590.rlib,libregex_automata-138ad0a82e2567f6.rlib,libaho_corasick-94f4335b9e39faa5.rlib,libmemchr-cbfe07f1e8672f04.rlib,libregex_syntax-5938dfb9732fae4f.rlib,libbuild_helper-4c9261a7b94adf93.rlib,libserde-65a76ab0d9b64a93.rlib}.rlib" "<sysroot>\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\std-f6e28d62d520a8c0.dll.lib" "<sysroot>\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib/{libcompiler_builtins-*}.rlib" "windows.0.52.0.lib" "legacy_stdio_definitions.lib" "kernel32.lib" "kernel32.lib" "advapi32.lib" "ntdll.lib" "userenv.lib" "ws2_32.lib" "dbghelp.lib" "/defaultlib:msvcrt" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcQ7FRZv\\api-ms-win-core-synch-l1-2-0.dll_imports_indirect.lib" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcQ7FRZv\\bcryptprimitives.dll_imports_indirect.lib" "/NXCOMPAT" "/OUT:D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\test\\run-make\\alloc-no-sync\\rmake.exe" "/OPT:REF,NOICF" "/DEBUG" "/PDBALTPATH:%_PDB%" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\intrinsic.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\liballoc.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\libcore.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\libstd.natvis"
  = note: some arguments are omitted. use `--verbose` to show all linker arguments
  = note: LINK : fatal error LNK1181: cannot open input file 'windows.0.52.0.lib'␍

error: aborting due to 1 previous error
------------------------------------------



---- [run-make] tests\run-make\allocator-shim-circular-deps stdout ----

error: run-make test failed: could not build `rmake.rs` recipe
status: exit code: 1
command: "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0\\bin\\rustc.exe" "-o" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\test\\run-make\\allocator-shim-circular-deps\\rmake.exe" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\deps" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\release\\deps" "--extern" "run_make_support=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\librun_make_support.rlib" "--edition=2021" "D:\\a\\rust\\rust\\tests\\run-make\\allocator-shim-circular-deps\\rmake.rs" "-Cprefer-dynamic" "-Dunused_must_use"
--- stderr -------------------------------
error: linking with `link.exe` failed: exit code: 1181
  |
  |
  = note: "C:\\Program Files\\Microsoft Visual Studio\\2022\\Enterprise\\VC\\Tools\\MSVC\\14.43.34808\\bin\\HostX64\\x64\\link.exe" "/NOLOGO" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcPs2MNV\\symbols.o" "<1 object files omitted>" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release/{librun_make_support.rlib}.rlib" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\deps/{libwasmparser-e17ddfbaf3cb6dbd.rlib,libbitflags-f8aa5ad34c8e2192.rlib,libserde_json-44b0399bb82cc3d3.rlib,libitoa-1aa11874bb14f79c.rlib,libryu-00ecf1edd3f1aa1e.rlib,libos_pipe-ccd1d19fd67d00bd.rlib,libwindows_sys-392233c961911690.rlib,libwindows_targets-1d0a7b4087b1f694.rlib,liblibc-f67bd989609867e9.rlib,libgimli-c8cdb048c278fda4.rlib,libfallible_iterator-fef16def6ec0eeff.rlib,libindexmap-893a04b27834a2ed.rlib,libequivalent-9793e896359164a2.rlib,libhashbrown-0d302631dbd6fe4f.rlib,libstable_deref_trait-72c93ece406d471b.rlib,libbstr-bed2534388c6815c.rlib,libobject-c6e3523ecf5a2db0.rlib,libruzstd-66678ea31a86f63c.rlib,libtwox_hash-3936dccc26266be8.rlib,libstatic_assertions-dbfe7f0aa3fa4065.rlib,libflate2-697c19cbed054ceb.rlib,libminiz_oxide-27fd8e4dc95ec84b.rlib,libadler2-07b36529be4a3513.rlib,libcrc32fast-437f8e19f397e866.rlib,libcfg_if-fca6657bc1ff4d90.rlib,libsimilar-6f15f3c784de51af.rlib,libregex-d89718c8f0c97590.rlib,libregex_automata-138ad0a82e2567f6.rlib,libaho_corasick-94f4335b9e39faa5.rlib,libmemchr-cbfe07f1e8672f04.rlib,libregex_syntax-5938dfb9732fae4f.rlib,libbuild_helper-4c9261a7b94adf93.rlib,libserde-65a76ab0d9b64a93.rlib}.rlib" "<sysroot>\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\std-f6e28d62d520a8c0.dll.lib" "<sysroot>\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib/{libcompiler_builtins-*}.rlib" "windows.0.52.0.lib" "legacy_stdio_definitions.lib" "kernel32.lib" "kernel32.lib" "advapi32.lib" "ntdll.lib" "userenv.lib" "ws2_32.lib" "dbghelp.lib" "/defaultlib:msvcrt" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcPs2MNV\\api-ms-win-core-synch-l1-2-0.dll_imports_indirect.lib" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcPs2MNV\\bcryptprimitives.dll_imports_indirect.lib" "/NXCOMPAT" "/OUT:D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\test\\run-make\\allocator-shim-circular-deps\\rmake.exe" "/OPT:REF,NOICF" "/DEBUG" "/PDBALTPATH:%_PDB%" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\intrinsic.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\liballoc.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\libcore.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\libstd.natvis"
  = note: some arguments are omitted. use `--verbose` to show all linker arguments
  = note: LINK : fatal error LNK1181: cannot open input file 'windows.0.52.0.lib'␍

error: aborting due to 1 previous error
------------------------------------------



---- [run-make] tests\run-make\allow-warnings-cmdline-stability stdout ----

error: run-make test failed: could not build `rmake.rs` recipe
status: exit code: 1
command: "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0\\bin\\rustc.exe" "-o" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\test\\run-make\\allow-warnings-cmdline-stability\\rmake.exe" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\deps" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\release\\deps" "--extern" "run_make_support=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\librun_make_support.rlib" "--edition=2021" "D:\\a\\rust\\rust\\tests\\run-make\\allow-warnings-cmdline-stability\\rmake.rs" "-Cprefer-dynamic" "-Dunused_must_use"
--- stderr -------------------------------
error: linking with `link.exe` failed: exit code: 1181
  |
  |
  = note: "C:\\Program Files\\Microsoft Visual Studio\\2022\\Enterprise\\VC\\Tools\\MSVC\\14.43.34808\\bin\\HostX64\\x64\\link.exe" "/NOLOGO" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustc7AV7wJ\\symbols.o" "<2 object files omitted>" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release/{librun_make_support.rlib}.rlib" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\deps/{libwasmparser-e17ddfbaf3cb6dbd.rlib,libbitflags-f8aa5ad34c8e2192.rlib,libserde_json-44b0399bb82cc3d3.rlib,libitoa-1aa11874bb14f79c.rlib,libryu-00ecf1edd3f1aa1e.rlib,libos_pipe-ccd1d19fd67d00bd.rlib,libwindows_sys-392233c961911690.rlib,libwindows_targets-1d0a7b4087b1f694.rlib,liblibc-f67bd989609867e9.rlib,libgimli-c8cdb048c278fda4.rlib,libfallible_iterator-fef16def6ec0eeff.rlib,libindexmap-893a04b27834a2ed.rlib,libequivalent-9793e896359164a2.rlib,libhashbrown-0d302631dbd6fe4f.rlib,libstable_deref_trait-72c93ece406d471b.rlib,libbstr-bed2534388c6815c.rlib,libobject-c6e3523ecf5a2db0.rlib,libruzstd-66678ea31a86f63c.rlib,libtwox_hash-3936dccc26266be8.rlib,libstatic_assertions-dbfe7f0aa3fa4065.rlib,libflate2-697c19cbed054ceb.rlib,libminiz_oxide-27fd8e4dc95ec84b.rlib,libadler2-07b36529be4a3513.rlib,libcrc32fast-437f8e19f397e866.rlib,libcfg_if-fca6657bc1ff4d90.rlib,libsimilar-6f15f3c784de51af.rlib,libregex-d89718c8f0c97590.rlib,libregex_automata-138ad0a82e2567f6.rlib,libaho_corasick-94f4335b9e39faa5.rlib,libmemchr-cbfe07f1e8672f04.rlib,libregex_syntax-5938dfb9732fae4f.rlib,libbuild_helper-4c9261a7b94adf93.rlib,libserde-65a76ab0d9b64a93.rlib}.rlib" "<sysroot>\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\std-f6e28d62d520a8c0.dll.lib" "<sysroot>\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib/{libcompiler_builtins-*}.rlib" "windows.0.52.0.lib" "legacy_stdio_definitions.lib" "kernel32.lib" "kernel32.lib" "advapi32.lib" "ntdll.lib" "userenv.lib" "ws2_32.lib" "dbghelp.lib" "/defaultlib:msvcrt" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustc7AV7wJ\\api-ms-win-core-synch-l1-2-0.dll_imports_indirect.lib" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustc7AV7wJ\\bcryptprimitives.dll_imports_indirect.lib" "/NXCOMPAT" "/OUT:D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\test\\run-make\\allow-warnings-cmdline-stability\\rmake.exe" "/OPT:REF,NOICF" "/DEBUG" "/PDBALTPATH:%_PDB%" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\intrinsic.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\liballoc.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\libcore.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\libstd.natvis"
  = note: some arguments are omitted. use `--verbose` to show all linker arguments
  = note: LINK : fatal error LNK1181: cannot open input file 'windows.0.52.0.lib'␍

error: aborting due to 1 previous error
------------------------------------------



---- [run-make] tests\run-make\amdgpu-kd stdout ----

error: run-make test failed: could not build `rmake.rs` recipe
status: exit code: 1
command: "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0\\bin\\rustc.exe" "-o" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\test\\run-make\\amdgpu-kd\\rmake.exe" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\deps" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\release\\deps" "--extern" "run_make_support=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\librun_make_support.rlib" "--edition=2021" "D:\\a\\rust\\rust\\tests\\run-make\\amdgpu-kd\\rmake.rs" "-Cprefer-dynamic" "-Dunused_must_use"
--- stderr -------------------------------
error: linking with `link.exe` failed: exit code: 1181
  |
  |
  = note: "C:\\Program Files\\Microsoft Visual Studio\\2022\\Enterprise\\VC\\Tools\\MSVC\\14.43.34808\\bin\\HostX64\\x64\\link.exe" "/NOLOGO" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcVTSUBL\\symbols.o" "<2 object files omitted>" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release/{librun_make_support.rlib}.rlib" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\deps/{libwasmparser-e17ddfbaf3cb6dbd.rlib,libbitflags-f8aa5ad34c8e2192.rlib,libserde_json-44b0399bb82cc3d3.rlib,libitoa-1aa11874bb14f79c.rlib,libryu-00ecf1edd3f1aa1e.rlib,libos_pipe-ccd1d19fd67d00bd.rlib,libwindows_sys-392233c961911690.rlib,libwindows_targets-1d0a7b4087b1f694.rlib,liblibc-f67bd989609867e9.rlib,libgimli-c8cdb048c278fda4.rlib,libfallible_iterator-fef16def6ec0eeff.rlib,libindexmap-893a04b27834a2ed.rlib,libequivalent-9793e896359164a2.rlib,libhashbrown-0d302631dbd6fe4f.rlib,libstable_deref_trait-72c93ece406d471b.rlib,libbstr-bed2534388c6815c.rlib,libobject-c6e3523ecf5a2db0.rlib,libruzstd-66678ea31a86f63c.rlib,libtwox_hash-3936dccc26266be8.rlib,libstatic_assertions-dbfe7f0aa3fa4065.rlib,libflate2-697c19cbed054ceb.rlib,libminiz_oxide-27fd8e4dc95ec84b.rlib,libadler2-07b36529be4a3513.rlib,libcrc32fast-437f8e19f397e866.rlib,libcfg_if-fca6657bc1ff4d90.rlib,libsimilar-6f15f3c784de51af.rlib,libregex-d89718c8f0c97590.rlib,libregex_automata-138ad0a82e2567f6.rlib,libaho_corasick-94f4335b9e39faa5.rlib,libmemchr-cbfe07f1e8672f04.rlib,libregex_syntax-5938dfb9732fae4f.rlib,libbuild_helper-4c9261a7b94adf93.rlib,libserde-65a76ab0d9b64a93.rlib}.rlib" "<sysroot>\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\std-f6e28d62d520a8c0.dll.lib" "<sysroot>\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib/{libcompiler_builtins-*}.rlib" "windows.0.52.0.lib" "legacy_stdio_definitions.lib" "kernel32.lib" "kernel32.lib" "advapi32.lib" "ntdll.lib" "userenv.lib" "ws2_32.lib" "dbghelp.lib" "/defaultlib:msvcrt" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcVTSUBL\\api-ms-win-core-synch-l1-2-0.dll_imports_indirect.lib" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcVTSUBL\\bcryptprimitives.dll_imports_indirect.lib" "/NXCOMPAT" "/OUT:D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\test\\run-make\\amdgpu-kd\\rmake.exe" "/OPT:REF,NOICF" "/DEBUG" "/PDBALTPATH:%_PDB%" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\intrinsic.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\liballoc.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\libcore.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\libstd.natvis"
  = note: some arguments are omitted. use `--verbose` to show all linker arguments
  = note: LINK : fatal error LNK1181: cannot open input file 'windows.0.52.0.lib'␍

error: aborting due to 1 previous error
------------------------------------------



---- [run-make] tests\run-make\arguments-non-c-like-enum stdout ----

error: run-make test failed: could not build `rmake.rs` recipe
status: exit code: 1
command: "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0\\bin\\rustc.exe" "-o" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\test\\run-make\\arguments-non-c-like-enum\\rmake.exe" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\deps" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\release\\deps" "--extern" "run_make_support=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\librun_make_support.rlib" "--edition=2021" "D:\\a\\rust\\rust\\tests\\run-make\\arguments-non-c-like-enum\\rmake.rs" "-Cprefer-dynamic" "-Dunused_must_use"
--- stderr -------------------------------
error: linking with `link.exe` failed: exit code: 1181
  |
  |
  = note: "C:\\Program Files\\Microsoft Visual Studio\\2022\\Enterprise\\VC\\Tools\\MSVC\\14.43.34808\\bin\\HostX64\\x64\\link.exe" "/NOLOGO" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcJYvilf\\symbols.o" "<1 object files omitted>" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release/{librun_make_support.rlib}.rlib" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\deps/{libwasmparser-e17ddfbaf3cb6dbd.rlib,libbitflags-f8aa5ad34c8e2192.rlib,libserde_json-44b0399bb82cc3d3.rlib,libitoa-1aa11874bb14f79c.rlib,libryu-00ecf1edd3f1aa1e.rlib,libos_pipe-ccd1d19fd67d00bd.rlib,libwindows_sys-392233c961911690.rlib,libwindows_targets-1d0a7b4087b1f694.rlib,liblibc-f67bd989609867e9.rlib,libgimli-c8cdb048c278fda4.rlib,libfallible_iterator-fef16def6ec0eeff.rlib,libindexmap-893a04b27834a2ed.rlib,libequivalent-9793e896359164a2.rlib,libhashbrown-0d302631dbd6fe4f.rlib,libstable_deref_trait-72c93ece406d471b.rlib,libbstr-bed2534388c6815c.rlib,libobject-c6e3523ecf5a2db0.rlib,libruzstd-66678ea31a86f63c.rlib,libtwox_hash-3936dccc26266be8.rlib,libstatic_assertions-dbfe7f0aa3fa4065.rlib,libflate2-697c19cbed054ceb.rlib,libminiz_oxide-27fd8e4dc95ec84b.rlib,libadler2-07b36529be4a3513.rlib,libcrc32fast-437f8e19f397e866.rlib,libcfg_if-fca6657bc1ff4d90.rlib,libsimilar-6f15f3c784de51af.rlib,libregex-d89718c8f0c97590.rlib,libregex_automata-138ad0a82e2567f6.rlib,libaho_corasick-94f4335b9e39faa5.rlib,libmemchr-cbfe07f1e8672f04.rlib,libregex_syntax-5938dfb9732fae4f.rlib,libbuild_helper-4c9261a7b94adf93.rlib,libserde-65a76ab0d9b64a93.rlib}.rlib" "<sysroot>\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\std-f6e28d62d520a8c0.dll.lib" "<sysroot>\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib/{libcompiler_builtins-*}.rlib" "windows.0.52.0.lib" "legacy_stdio_definitions.lib" "kernel32.lib" "kernel32.lib" "advapi32.lib" "ntdll.lib" "userenv.lib" "ws2_32.lib" "dbghelp.lib" "/defaultlib:msvcrt" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcJYvilf\\api-ms-win-core-synch-l1-2-0.dll_imports_indirect.lib" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcJYvilf\\bcryptprimitives.dll_imports_indirect.lib" "/NXCOMPAT" "/OUT:D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\test\\run-make\\arguments-non-c-like-enum\\rmake.exe" "/OPT:REF,NOICF" "/DEBUG" "/PDBALTPATH:%_PDB%" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\intrinsic.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\liballoc.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\libcore.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\libstd.natvis"
  = note: some arguments are omitted. use `--verbose` to show all linker arguments
  = note: LINK : fatal error LNK1181: cannot open input file 'windows.0.52.0.lib'␍

error: aborting due to 1 previous error
------------------------------------------



---- [run-make] tests\run-make\artifact-incr-cache stdout ----

error: run-make test failed: could not build `rmake.rs` recipe
status: exit code: 1
command: "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0\\bin\\rustc.exe" "-o" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\test\\run-make\\artifact-incr-cache\\rmake.exe" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\deps" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\release\\deps" "--extern" "run_make_support=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\librun_make_support.rlib" "--edition=2021" "D:\\a\\rust\\rust\\tests\\run-make\\artifact-incr-cache\\rmake.rs" "-Cprefer-dynamic" "-Dunused_must_use"
--- stderr -------------------------------
error: linking with `link.exe` failed: exit code: 1181
  |
  |
  = note: "C:\\Program Files\\Microsoft Visual Studio\\2022\\Enterprise\\VC\\Tools\\MSVC\\14.43.34808\\bin\\HostX64\\x64\\link.exe" "/NOLOGO" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcXHUURS\\symbols.o" "<1 object files omitted>" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release/{librun_make_support.rlib}.rlib" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\deps/{libwasmparser-e17ddfbaf3cb6dbd.rlib,libbitflags-f8aa5ad34c8e2192.rlib,libserde_json-44b0399bb82cc3d3.rlib,libitoa-1aa11874bb14f79c.rlib,libryu-00ecf1edd3f1aa1e.rlib,libos_pipe-ccd1d19fd67d00bd.rlib,libwindows_sys-392233c961911690.rlib,libwindows_targets-1d0a7b4087b1f694.rlib,liblibc-f67bd989609867e9.rlib,libgimli-c8cdb048c278fda4.rlib,libfallible_iterator-fef16def6ec0eeff.rlib,libindexmap-893a04b27834a2ed.rlib,libequivalent-9793e896359164a2.rlib,libhashbrown-0d302631dbd6fe4f.rlib,libstable_deref_trait-72c93ece406d471b.rlib,libbstr-bed2534388c6815c.rlib,libobject-c6e3523ecf5a2db0.rlib,libruzstd-66678ea31a86f63c.rlib,libtwox_hash-3936dccc26266be8.rlib,libstatic_assertions-dbfe7f0aa3fa4065.rlib,libflate2-697c19cbed054ceb.rlib,libminiz_oxide-27fd8e4dc95ec84b.rlib,libadler2-07b36529be4a3513.rlib,libcrc32fast-437f8e19f397e866.rlib,libcfg_if-fca6657bc1ff4d90.rlib,libsimilar-6f15f3c784de51af.rlib,libregex-d89718c8f0c97590.rlib,libregex_automata-138ad0a82e2567f6.rlib,libaho_corasick-94f4335b9e39faa5.rlib,libmemchr-cbfe07f1e8672f04.rlib,libregex_syntax-5938dfb9732fae4f.rlib,libbuild_helper-4c9261a7b94adf93.rlib,libserde-65a76ab0d9b64a93.rlib}.rlib" "<sysroot>\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\std-f6e28d62d520a8c0.dll.lib" "<sysroot>\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib/{libcompiler_builtins-*}.rlib" "windows.0.52.0.lib" "legacy_stdio_definitions.lib" "kernel32.lib" "kernel32.lib" "advapi32.lib" "ntdll.lib" "userenv.lib" "ws2_32.lib" "dbghelp.lib" "/defaultlib:msvcrt" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcXHUURS\\api-ms-win-core-synch-l1-2-0.dll_imports_indirect.lib" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcXHUURS\\bcryptprimitives.dll_imports_indirect.lib" "/NXCOMPAT" "/OUT:D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\test\\run-make\\artifact-incr-cache\\rmake.exe" "/OPT:REF,NOICF" "/DEBUG" "/PDBALTPATH:%_PDB%" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\intrinsic.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\liballoc.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\libcore.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\libstd.natvis"
  = note: some arguments are omitted. use `--verbose` to show all linker arguments
  = note: LINK : fatal error LNK1181: cannot open input file 'windows.0.52.0.lib'␍

error: aborting due to 1 previous error
------------------------------------------



---- [run-make] tests\run-make\archive-duplicate-names stdout ----

error: run-make test failed: could not build `rmake.rs` recipe
status: exit code: 1
command: "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0\\bin\\rustc.exe" "-o" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\test\\run-make\\archive-duplicate-names\\rmake.exe" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\deps" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\release\\deps" "--extern" "run_make_support=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\librun_make_support.rlib" "--edition=2021" "D:\\a\\rust\\rust\\tests\\run-make\\archive-duplicate-names\\rmake.rs" "-Cprefer-dynamic" "-Dunused_must_use"
--- stderr -------------------------------
error: linking with `link.exe` failed: exit code: 1181
  |
  |
  = note: "C:\\Program Files\\Microsoft Visual Studio\\2022\\Enterprise\\VC\\Tools\\MSVC\\14.43.34808\\bin\\HostX64\\x64\\link.exe" "/NOLOGO" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustctVIpkh\\symbols.o" "<1 object files omitted>" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release/{librun_make_support.rlib}.rlib" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\deps/{libwasmparser-e17ddfbaf3cb6dbd.rlib,libbitflags-f8aa5ad34c8e2192.rlib,libserde_json-44b0399bb82cc3d3.rlib,libitoa-1aa11874bb14f79c.rlib,libryu-00ecf1edd3f1aa1e.rlib,libos_pipe-ccd1d19fd67d00bd.rlib,libwindows_sys-392233c961911690.rlib,libwindows_targets-1d0a7b4087b1f694.rlib,liblibc-f67bd989609867e9.rlib,libgimli-c8cdb048c278fda4.rlib,libfallible_iterator-fef16def6ec0eeff.rlib,libindexmap-893a04b27834a2ed.rlib,libequivalent-9793e896359164a2.rlib,libhashbrown-0d302631dbd6fe4f.rlib,libstable_deref_trait-72c93ece406d471b.rlib,libbstr-bed2534388c6815c.rlib,libobject-c6e3523ecf5a2db0.rlib,libruzstd-66678ea31a86f63c.rlib,libtwox_hash-3936dccc26266be8.rlib,libstatic_assertions-dbfe7f0aa3fa4065.rlib,libflate2-697c19cbed054ceb.rlib,libminiz_oxide-27fd8e4dc95ec84b.rlib,libadler2-07b36529be4a3513.rlib,libcrc32fast-437f8e19f397e866.rlib,libcfg_if-fca6657bc1ff4d90.rlib,libsimilar-6f15f3c784de51af.rlib,libregex-d89718c8f0c97590.rlib,libregex_automata-138ad0a82e2567f6.rlib,libaho_corasick-94f4335b9e39faa5.rlib,libmemchr-cbfe07f1e8672f04.rlib,libregex_syntax-5938dfb9732fae4f.rlib,libbuild_helper-4c9261a7b94adf93.rlib,libserde-65a76ab0d9b64a93.rlib}.rlib" "<sysroot>\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\std-f6e28d62d520a8c0.dll.lib" "<sysroot>\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib/{libcompiler_builtins-*}.rlib" "windows.0.52.0.lib" "legacy_stdio_definitions.lib" "kernel32.lib" "kernel32.lib" "advapi32.lib" "ntdll.lib" "userenv.lib" "ws2_32.lib" "dbghelp.lib" "/defaultlib:msvcrt" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustctVIpkh\\api-ms-win-core-synch-l1-2-0.dll_imports_indirect.lib" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustctVIpkh\\bcryptprimitives.dll_imports_indirect.lib" "/NXCOMPAT" "/OUT:D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\test\\run-make\\archive-duplicate-names\\rmake.exe" "/OPT:REF,NOICF" "/DEBUG" "/PDBALTPATH:%_PDB%" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\intrinsic.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\liballoc.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\libcore.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\libstd.natvis"
  = note: some arguments are omitted. use `--verbose` to show all linker arguments
  = note: LINK : fatal error LNK1181: cannot open input file 'windows.0.52.0.lib'␍

error: aborting due to 1 previous error
------------------------------------------



---- [run-make] tests\run-make\artifact-incr-cache-no-obj stdout ----

error: run-make test failed: could not build `rmake.rs` recipe
status: exit code: 1
command: "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0\\bin\\rustc.exe" "-o" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\test\\run-make\\artifact-incr-cache-no-obj\\rmake.exe" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\deps" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\release\\deps" "--extern" "run_make_support=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\librun_make_support.rlib" "--edition=2021" "D:\\a\\rust\\rust\\tests\\run-make\\artifact-incr-cache-no-obj\\rmake.rs" "-Cprefer-dynamic" "-Dunused_must_use"
--- stderr -------------------------------
error: linking with `link.exe` failed: exit code: 1181
  |
  |
  = note: "C:\\Program Files\\Microsoft Visual Studio\\2022\\Enterprise\\VC\\Tools\\MSVC\\14.43.34808\\bin\\HostX64\\x64\\link.exe" "/NOLOGO" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcZT9Mqm\\symbols.o" "<1 object files omitted>" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release/{librun_make_support.rlib}.rlib" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\deps/{libwasmparser-e17ddfbaf3cb6dbd.rlib,libbitflags-f8aa5ad34c8e2192.rlib,libserde_json-44b0399bb82cc3d3.rlib,libitoa-1aa11874bb14f79c.rlib,libryu-00ecf1edd3f1aa1e.rlib,libos_pipe-ccd1d19fd67d00bd.rlib,libwindows_sys-392233c961911690.rlib,libwindows_targets-1d0a7b4087b1f694.rlib,liblibc-f67bd989609867e9.rlib,libgimli-c8cdb048c278fda4.rlib,libfallible_iterator-fef16def6ec0eeff.rlib,libindexmap-893a04b27834a2ed.rlib,libequivalent-9793e896359164a2.rlib,libhashbrown-0d302631dbd6fe4f.rlib,libstable_deref_trait-72c93ece406d471b.rlib,libbstr-bed2534388c6815c.rlib,libobject-c6e3523ecf5a2db0.rlib,libruzstd-66678ea31a86f63c.rlib,libtwox_hash-3936dccc26266be8.rlib,libstatic_assertions-dbfe7f0aa3fa4065.rlib,libflate2-697c19cbed054ceb.rlib,libminiz_oxide-27fd8e4dc95ec84b.rlib,libadler2-07b36529be4a3513.rlib,libcrc32fast-437f8e19f397e866.rlib,libcfg_if-fca6657bc1ff4d90.rlib,libsimilar-6f15f3c784de51af.rlib,libregex-d89718c8f0c97590.rlib,libregex_automata-138ad0a82e2567f6.rlib,libaho_corasick-94f4335b9e39faa5.rlib,libmemchr-cbfe07f1e8672f04.rlib,libregex_syntax-5938dfb9732fae4f.rlib,libbuild_helper-4c9261a7b94adf93.rlib,libserde-65a76ab0d9b64a93.rlib}.rlib" "<sysroot>\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\std-f6e28d62d520a8c0.dll.lib" "<sysroot>\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib/{libcompiler_builtins-*}.rlib" "windows.0.52.0.lib" "legacy_stdio_definitions.lib" "kernel32.lib" "kernel32.lib" "advapi32.lib" "ntdll.lib" "userenv.lib" "ws2_32.lib" "dbghelp.lib" "/defaultlib:msvcrt" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcZT9Mqm\\api-ms-win-core-synch-l1-2-0.dll_imports_indirect.lib" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcZT9Mqm\\bcryptprimitives.dll_imports_indirect.lib" "/NXCOMPAT" "/OUT:D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\test\\run-make\\artifact-incr-cache-no-obj\\rmake.exe" "/OPT:REF,NOICF" "/DEBUG" "/PDBALTPATH:%_PDB%" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\intrinsic.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\liballoc.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\libcore.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\libstd.natvis"
  = note: some arguments are omitted. use `--verbose` to show all linker arguments
  = note: LINK : fatal error LNK1181: cannot open input file 'windows.0.52.0.lib'␍

error: aborting due to 1 previous error
------------------------------------------



---- [run-make] tests\run-make\bare-outfile stdout ----

error: run-make test failed: could not build `rmake.rs` recipe
status: exit code: 1
command: "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0\\bin\\rustc.exe" "-o" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\test\\run-make\\bare-outfile\\rmake.exe" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\deps" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\release\\deps" "--extern" "run_make_support=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\librun_make_support.rlib" "--edition=2021" "D:\\a\\rust\\rust\\tests\\run-make\\bare-outfile\\rmake.rs" "-Cprefer-dynamic" "-Dunused_must_use"
--- stderr -------------------------------
error: linking with `link.exe` failed: exit code: 1181
  |
  |
  = note: "C:\\Program Files\\Microsoft Visual Studio\\2022\\Enterprise\\VC\\Tools\\MSVC\\14.43.34808\\bin\\HostX64\\x64\\link.exe" "/NOLOGO" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcL45eMN\\symbols.o" "<1 object files omitted>" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release/{librun_make_support.rlib}.rlib" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\deps/{libwasmparser-e17ddfbaf3cb6dbd.rlib,libbitflags-f8aa5ad34c8e2192.rlib,libserde_json-44b0399bb82cc3d3.rlib,libitoa-1aa11874bb14f79c.rlib,libryu-00ecf1edd3f1aa1e.rlib,libos_pipe-ccd1d19fd67d00bd.rlib,libwindows_sys-392233c961911690.rlib,libwindows_targets-1d0a7b4087b1f694.rlib,liblibc-f67bd989609867e9.rlib,libgimli-c8cdb048c278fda4.rlib,libfallible_iterator-fef16def6ec0eeff.rlib,libindexmap-893a04b27834a2ed.rlib,libequivalent-9793e896359164a2.rlib,libhashbrown-0d302631dbd6fe4f.rlib,libstable_deref_trait-72c93ece406d471b.rlib,libbstr-bed2534388c6815c.rlib,libobject-c6e3523ecf5a2db0.rlib,libruzstd-66678ea31a86f63c.rlib,libtwox_hash-3936dccc26266be8.rlib,libstatic_assertions-dbfe7f0aa3fa4065.rlib,libflate2-697c19cbed054ceb.rlib,libminiz_oxide-27fd8e4dc95ec84b.rlib,libadler2-07b36529be4a3513.rlib,libcrc32fast-437f8e19f397e866.rlib,libcfg_if-fca6657bc1ff4d90.rlib,libsimilar-6f15f3c784de51af.rlib,libregex-d89718c8f0c97590.rlib,libregex_automata-138ad0a82e2567f6.rlib,libaho_corasick-94f4335b9e39faa5.rlib,libmemchr-cbfe07f1e8672f04.rlib,libregex_syntax-5938dfb9732fae4f.rlib,libbuild_helper-4c9261a7b94adf93.rlib,libserde-65a76ab0d9b64a93.rlib}.rlib" "<sysroot>\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\std-f6e28d62d520a8c0.dll.lib" "<sysroot>\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib/{libcompiler_builtins-*}.rlib" "windows.0.52.0.lib" "legacy_stdio_definitions.lib" "kernel32.lib" "kernel32.lib" "advapi32.lib" "ntdll.lib" "userenv.lib" "ws2_32.lib" "dbghelp.lib" "/defaultlib:msvcrt" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcL45eMN\\api-ms-win-core-synch-l1-2-0.dll_imports_indirect.lib" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcL45eMN\\bcryptprimitives.dll_imports_indirect.lib" "/NXCOMPAT" "/OUT:D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\test\\run-make\\bare-outfile\\rmake.exe" "/OPT:REF,NOICF" "/DEBUG" "/PDBALTPATH:%_PDB%" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\intrinsic.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\liballoc.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\libcore.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\libstd.natvis"
  = note: some arguments are omitted. use `--verbose` to show all linker arguments
  = note: LINK : fatal error LNK1181: cannot open input file 'windows.0.52.0.lib'␍

error: aborting due to 1 previous error
------------------------------------------



---- [run-make] tests\run-make\bin-emit-no-symbols stdout ----

error: run-make test failed: could not build `rmake.rs` recipe
status: exit code: 1
command: "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0\\bin\\rustc.exe" "-o" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\test\\run-make\\bin-emit-no-symbols\\rmake.exe" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\deps" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\release\\deps" "--extern" "run_make_support=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\librun_make_support.rlib" "--edition=2021" "D:\\a\\rust\\rust\\tests\\run-make\\bin-emit-no-symbols\\rmake.rs" "-Cprefer-dynamic" "-Dunused_must_use"
--- stderr -------------------------------
error: linking with `link.exe` failed: exit code: 1181
  |
  |
  = note: "C:\\Program Files\\Microsoft Visual Studio\\2022\\Enterprise\\VC\\Tools\\MSVC\\14.43.34808\\bin\\HostX64\\x64\\link.exe" "/NOLOGO" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustctu6Hua\\symbols.o" "<2 object files omitted>" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release/{librun_make_support.rlib}.rlib" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\deps/{libwasmparser-e17ddfbaf3cb6dbd.rlib,libbitflags-f8aa5ad34c8e2192.rlib,libserde_json-44b0399bb82cc3d3.rlib,libitoa-1aa11874bb14f79c.rlib,libryu-00ecf1edd3f1aa1e.rlib,libos_pipe-ccd1d19fd67d00bd.rlib,libwindows_sys-392233c961911690.rlib,libwindows_targets-1d0a7b4087b1f694.rlib,liblibc-f67bd989609867e9.rlib,libgimli-c8cdb048c278fda4.rlib,libfallible_iterator-fef16def6ec0eeff.rlib,libindexmap-893a04b27834a2ed.rlib,libequivalent-9793e896359164a2.rlib,libhashbrown-0d302631dbd6fe4f.rlib,libstable_deref_trait-72c93ece406d471b.rlib,libbstr-bed2534388c6815c.rlib,libobject-c6e3523ecf5a2db0.rlib,libruzstd-66678ea31a86f63c.rlib,libtwox_hash-3936dccc26266be8.rlib,libstatic_assertions-dbfe7f0aa3fa4065.rlib,libflate2-697c19cbed054ceb.rlib,libminiz_oxide-27fd8e4dc95ec84b.rlib,libadler2-07b36529be4a3513.rlib,libcrc32fast-437f8e19f397e866.rlib,libcfg_if-fca6657bc1ff4d90.rlib,libsimilar-6f15f3c784de51af.rlib,libregex-d89718c8f0c97590.rlib,libregex_automata-138ad0a82e2567f6.rlib,libaho_corasick-94f4335b9e39faa5.rlib,libmemchr-cbfe07f1e8672f04.rlib,libregex_syntax-5938dfb9732fae4f.rlib,libbuild_helper-4c9261a7b94adf93.rlib,libserde-65a76ab0d9b64a93.rlib}.rlib" "<sysroot>\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\std-f6e28d62d520a8c0.dll.lib" "<sysroot>\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib/{libcompiler_builtins-*}.rlib" "windows.0.52.0.lib" "legacy_stdio_definitions.lib" "kernel32.lib" "kernel32.lib" "advapi32.lib" "ntdll.lib" "userenv.lib" "ws2_32.lib" "dbghelp.lib" "/defaultlib:msvcrt" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustctu6Hua\\api-ms-win-core-synch-l1-2-0.dll_imports_indirect.lib" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustctu6Hua\\bcryptprimitives.dll_imports_indirect.lib" "/NXCOMPAT" "/OUT:D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\test\\run-make\\bin-emit-no-symbols\\rmake.exe" "/OPT:REF,NOICF" "/DEBUG" "/PDBALTPATH:%_PDB%" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\intrinsic.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\liballoc.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\libcore.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\libstd.natvis"
  = note: some arguments are omitted. use `--verbose` to show all linker arguments
  = note: LINK : fatal error LNK1181: cannot open input file 'windows.0.52.0.lib'␍

error: aborting due to 1 previous error
------------------------------------------



---- [run-make] tests\run-make\box-struct-no-segfault stdout ----

error: run-make test failed: could not build `rmake.rs` recipe
status: exit code: 1
command: "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0\\bin\\rustc.exe" "-o" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\test\\run-make\\box-struct-no-segfault\\rmake.exe" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\deps" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\release\\deps" "--extern" "run_make_support=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\librun_make_support.rlib" "--edition=2021" "D:\\a\\rust\\rust\\tests\\run-make\\box-struct-no-segfault\\rmake.rs" "-Cprefer-dynamic" "-Dunused_must_use"
--- stderr -------------------------------
error: linking with `link.exe` failed: exit code: 1181
  |
  |
  = note: "C:\\Program Files\\Microsoft Visual Studio\\2022\\Enterprise\\VC\\Tools\\MSVC\\14.43.34808\\bin\\HostX64\\x64\\link.exe" "/NOLOGO" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcLlnaAV\\symbols.o" "<1 object files omitted>" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release/{librun_make_support.rlib}.rlib" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\deps/{libwasmparser-e17ddfbaf3cb6dbd.rlib,libbitflags-f8aa5ad34c8e2192.rlib,libserde_json-44b0399bb82cc3d3.rlib,libitoa-1aa11874bb14f79c.rlib,libryu-00ecf1edd3f1aa1e.rlib,libos_pipe-ccd1d19fd67d00bd.rlib,libwindows_sys-392233c961911690.rlib,libwindows_targets-1d0a7b4087b1f694.rlib,liblibc-f67bd989609867e9.rlib,libgimli-c8cdb048c278fda4.rlib,libfallible_iterator-fef16def6ec0eeff.rlib,libindexmap-893a04b27834a2ed.rlib,libequivalent-9793e896359164a2.rlib,libhashbrown-0d302631dbd6fe4f.rlib,libstable_deref_trait-72c93ece406d471b.rlib,libbstr-bed2534388c6815c.rlib,libobject-c6e3523ecf5a2db0.rlib,libruzstd-66678ea31a86f63c.rlib,libtwox_hash-3936dccc26266be8.rlib,libstatic_assertions-dbfe7f0aa3fa4065.rlib,libflate2-697c19cbed054ceb.rlib,libminiz_oxide-27fd8e4dc95ec84b.rlib,libadler2-07b36529be4a3513.rlib,libcrc32fast-437f8e19f397e866.rlib,libcfg_if-fca6657bc1ff4d90.rlib,libsimilar-6f15f3c784de51af.rlib,libregex-d89718c8f0c97590.rlib,libregex_automata-138ad0a82e2567f6.rlib,libaho_corasick-94f4335b9e39faa5.rlib,libmemchr-cbfe07f1e8672f04.rlib,libregex_syntax-5938dfb9732fae4f.rlib,libbuild_helper-4c9261a7b94adf93.rlib,libserde-65a76ab0d9b64a93.rlib}.rlib" "<sysroot>\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\std-f6e28d62d520a8c0.dll.lib" "<sysroot>\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib/{libcompiler_builtins-*}.rlib" "windows.0.52.0.lib" "legacy_stdio_definitions.lib" "kernel32.lib" "kernel32.lib" "advapi32.lib" "ntdll.lib" "userenv.lib" "ws2_32.lib" "dbghelp.lib" "/defaultlib:msvcrt" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcLlnaAV\\api-ms-win-core-synch-l1-2-0.dll_imports_indirect.lib" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcLlnaAV\\bcryptprimitives.dll_imports_indirect.lib" "/NXCOMPAT" "/OUT:D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\test\\run-make\\box-struct-no-segfault\\rmake.exe" "/OPT:REF,NOICF" "/DEBUG" "/PDBALTPATH:%_PDB%" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\intrinsic.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\liballoc.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\libcore.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\libstd.natvis"
  = note: some arguments are omitted. use `--verbose` to show all linker arguments
  = note: LINK : fatal error LNK1181: cannot open input file 'windows.0.52.0.lib'␍

error: aborting due to 1 previous error
------------------------------------------



---- [run-make] tests\run-make\avr-rjmp-offset stdout ----

error: run-make test failed: could not build `rmake.rs` recipe
status: exit code: 1
command: "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0\\bin\\rustc.exe" "-o" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\test\\run-make\\avr-rjmp-offset\\rmake.exe" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\deps" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\release\\deps" "--extern" "run_make_support=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\librun_make_support.rlib" "--edition=2021" "D:\\a\\rust\\rust\\tests\\run-make\\avr-rjmp-offset\\rmake.rs" "-Cprefer-dynamic" "-Dunused_must_use"
--- stderr -------------------------------
error: linking with `link.exe` failed: exit code: 1181
  |
  |
  = note: "C:\\Program Files\\Microsoft Visual Studio\\2022\\Enterprise\\VC\\Tools\\MSVC\\14.43.34808\\bin\\HostX64\\x64\\link.exe" "/NOLOGO" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcKBmtZg\\symbols.o" "<3 object files omitted>" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release/{librun_make_support.rlib}.rlib" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\deps/{libwasmparser-e17ddfbaf3cb6dbd.rlib,libbitflags-f8aa5ad34c8e2192.rlib,libserde_json-44b0399bb82cc3d3.rlib,libitoa-1aa11874bb14f79c.rlib,libryu-00ecf1edd3f1aa1e.rlib,libos_pipe-ccd1d19fd67d00bd.rlib,libwindows_sys-392233c961911690.rlib,libwindows_targets-1d0a7b4087b1f694.rlib,liblibc-f67bd989609867e9.rlib,libgimli-c8cdb048c278fda4.rlib,libfallible_iterator-fef16def6ec0eeff.rlib,libindexmap-893a04b27834a2ed.rlib,libequivalent-9793e896359164a2.rlib,libhashbrown-0d302631dbd6fe4f.rlib,libstable_deref_trait-72c93ece406d471b.rlib,libbstr-bed2534388c6815c.rlib,libobject-c6e3523ecf5a2db0.rlib,libruzstd-66678ea31a86f63c.rlib,libtwox_hash-3936dccc26266be8.rlib,libstatic_assertions-dbfe7f0aa3fa4065.rlib,libflate2-697c19cbed054ceb.rlib,libminiz_oxide-27fd8e4dc95ec84b.rlib,libadler2-07b36529be4a3513.rlib,libcrc32fast-437f8e19f397e866.rlib,libcfg_if-fca6657bc1ff4d90.rlib,libsimilar-6f15f3c784de51af.rlib,libregex-d89718c8f0c97590.rlib,libregex_automata-138ad0a82e2567f6.rlib,libaho_corasick-94f4335b9e39faa5.rlib,libmemchr-cbfe07f1e8672f04.rlib,libregex_syntax-5938dfb9732fae4f.rlib,libbuild_helper-4c9261a7b94adf93.rlib,libserde-65a76ab0d9b64a93.rlib}.rlib" "<sysroot>\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\std-f6e28d62d520a8c0.dll.lib" "<sysroot>\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib/{libcompiler_builtins-*}.rlib" "windows.0.52.0.lib" "legacy_stdio_definitions.lib" "kernel32.lib" "kernel32.lib" "advapi32.lib" "ntdll.lib" "userenv.lib" "ws2_32.lib" "dbghelp.lib" "/defaultlib:msvcrt" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcKBmtZg\\api-ms-win-core-synch-l1-2-0.dll_imports_indirect.lib" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcKBmtZg\\bcryptprimitives.dll_imports_indirect.lib" "/NXCOMPAT" "/OUT:D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\test\\run-make\\avr-rjmp-offset\\rmake.exe" "/OPT:REF,NOICF" "/DEBUG" "/PDBALTPATH:%_PDB%" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\intrinsic.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\liballoc.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\libcore.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\libstd.natvis"
  = note: some arguments are omitted. use `--verbose` to show all linker arguments
  = note: LINK : fatal error LNK1181: cannot open input file 'windows.0.52.0.lib'␍

error: aborting due to 1 previous error
------------------------------------------



---- [run-make] tests\run-make\c-dynamic-dylib stdout ----

error: run-make test failed: could not build `rmake.rs` recipe
status: exit code: 1
command: "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0\\bin\\rustc.exe" "-o" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\test\\run-make\\c-dynamic-dylib\\rmake.exe" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\deps" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\release\\deps" "--extern" "run_make_support=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\librun_make_support.rlib" "--edition=2021" "D:\\a\\rust\\rust\\tests\\run-make\\c-dynamic-dylib\\rmake.rs" "-Cprefer-dynamic" "-Dunused_must_use"
--- stderr -------------------------------
error: linking with `link.exe` failed: exit code: 1181
  |
  |
  = note: "C:\\Program Files\\Microsoft Visual Studio\\2022\\Enterprise\\VC\\Tools\\MSVC\\14.43.34808\\bin\\HostX64\\x64\\link.exe" "/NOLOGO" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcMKX7In\\symbols.o" "<1 object files omitted>" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release/{librun_make_support.rlib}.rlib" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\deps/{libwasmparser-e17ddfbaf3cb6dbd.rlib,libbitflags-f8aa5ad34c8e2192.rlib,libserde_json-44b0399bb82cc3d3.rlib,libitoa-1aa11874bb14f79c.rlib,libryu-00ecf1edd3f1aa1e.rlib,libos_pipe-ccd1d19fd67d00bd.rlib,libwindows_sys-392233c961911690.rlib,libwindows_targets-1d0a7b4087b1f694.rlib,liblibc-f67bd989609867e9.rlib,libgimli-c8cdb048c278fda4.rlib,libfallible_iterator-fef16def6ec0eeff.rlib,libindexmap-893a04b27834a2ed.rlib,libequivalent-9793e896359164a2.rlib,libhashbrown-0d302631dbd6fe4f.rlib,libstable_deref_trait-72c93ece406d471b.rlib,libbstr-bed2534388c6815c.rlib,libobject-c6e3523ecf5a2db0.rlib,libruzstd-66678ea31a86f63c.rlib,libtwox_hash-3936dccc26266be8.rlib,libstatic_assertions-dbfe7f0aa3fa4065.rlib,libflate2-697c19cbed054ceb.rlib,libminiz_oxide-27fd8e4dc95ec84b.rlib,libadler2-07b36529be4a3513.rlib,libcrc32fast-437f8e19f397e866.rlib,libcfg_if-fca6657bc1ff4d90.rlib,libsimilar-6f15f3c784de51af.rlib,libregex-d89718c8f0c97590.rlib,libregex_automata-138ad0a82e2567f6.rlib,libaho_corasick-94f4335b9e39faa5.rlib,libmemchr-cbfe07f1e8672f04.rlib,libregex_syntax-5938dfb9732fae4f.rlib,libbuild_helper-4c9261a7b94adf93.rlib,libserde-65a76ab0d9b64a93.rlib}.rlib" "<sysroot>\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\std-f6e28d62d520a8c0.dll.lib" "<sysroot>\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib/{libcompiler_builtins-*}.rlib" "windows.0.52.0.lib" "legacy_stdio_definitions.lib" "kernel32.lib" "kernel32.lib" "advapi32.lib" "ntdll.lib" "userenv.lib" "ws2_32.lib" "dbghelp.lib" "/defaultlib:msvcrt" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcMKX7In\\api-ms-win-core-synch-l1-2-0.dll_imports_indirect.lib" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcMKX7In\\bcryptprimitives.dll_imports_indirect.lib" "/NXCOMPAT" "/OUT:D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\test\\run-make\\c-dynamic-dylib\\rmake.exe" "/OPT:REF,NOICF" "/DEBUG" "/PDBALTPATH:%_PDB%" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\intrinsic.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\liballoc.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\libcore.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\libstd.natvis"
  = note: some arguments are omitted. use `--verbose` to show all linker arguments
  = note: LINK : fatal error LNK1181: cannot open input file 'windows.0.52.0.lib'␍

error: aborting due to 1 previous error
------------------------------------------



---- [run-make] tests\run-make\c-dynamic-rlib stdout ----

error: run-make test failed: could not build `rmake.rs` recipe
status: exit code: 1
command: "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0\\bin\\rustc.exe" "-o" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\test\\run-make\\c-dynamic-rlib\\rmake.exe" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\deps" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\release\\deps" "--extern" "run_make_support=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\librun_make_support.rlib" "--edition=2021" "D:\\a\\rust\\rust\\tests\\run-make\\c-dynamic-rlib\\rmake.rs" "-Cprefer-dynamic" "-Dunused_must_use"
--- stderr -------------------------------
error: linking with `link.exe` failed: exit code: 1181
  |
  |
  = note: "C:\\Program Files\\Microsoft Visual Studio\\2022\\Enterprise\\VC\\Tools\\MSVC\\14.43.34808\\bin\\HostX64\\x64\\link.exe" "/NOLOGO" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcyYI84K\\symbols.o" "<1 object files omitted>" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release/{librun_make_support.rlib}.rlib" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\deps/{libwasmparser-e17ddfbaf3cb6dbd.rlib,libbitflags-f8aa5ad34c8e2192.rlib,libserde_json-44b0399bb82cc3d3.rlib,libitoa-1aa11874bb14f79c.rlib,libryu-00ecf1edd3f1aa1e.rlib,libos_pipe-ccd1d19fd67d00bd.rlib,libwindows_sys-392233c961911690.rlib,libwindows_targets-1d0a7b4087b1f694.rlib,liblibc-f67bd989609867e9.rlib,libgimli-c8cdb048c278fda4.rlib,libfallible_iterator-fef16def6ec0eeff.rlib,libindexmap-893a04b27834a2ed.rlib,libequivalent-9793e896359164a2.rlib,libhashbrown-0d302631dbd6fe4f.rlib,libstable_deref_trait-72c93ece406d471b.rlib,libbstr-bed2534388c6815c.rlib,libobject-c6e3523ecf5a2db0.rlib,libruzstd-66678ea31a86f63c.rlib,libtwox_hash-3936dccc26266be8.rlib,libstatic_assertions-dbfe7f0aa3fa4065.rlib,libflate2-697c19cbed054ceb.rlib,libminiz_oxide-27fd8e4dc95ec84b.rlib,libadler2-07b36529be4a3513.rlib,libcrc32fast-437f8e19f397e866.rlib,libcfg_if-fca6657bc1ff4d90.rlib,libsimilar-6f15f3c784de51af.rlib,libregex-d89718c8f0c97590.rlib,libregex_automata-138ad0a82e2567f6.rlib,libaho_corasick-94f4335b9e39faa5.rlib,libmemchr-cbfe07f1e8672f04.rlib,libregex_syntax-5938dfb9732fae4f.rlib,libbuild_helper-4c9261a7b94adf93.rlib,libserde-65a76ab0d9b64a93.rlib}.rlib" "<sysroot>\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\std-f6e28d62d520a8c0.dll.lib" "<sysroot>\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib/{libcompiler_builtins-*}.rlib" "windows.0.52.0.lib" "legacy_stdio_definitions.lib" "kernel32.lib" "kernel32.lib" "advapi32.lib" "ntdll.lib" "userenv.lib" "ws2_32.lib" "dbghelp.lib" "/defaultlib:msvcrt" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcyYI84K\\api-ms-win-core-synch-l1-2-0.dll_imports_indirect.lib" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcyYI84K\\bcryptprimitives.dll_imports_indirect.lib" "/NXCOMPAT" "/OUT:D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\test\\run-make\\c-dynamic-rlib\\rmake.exe" "/OPT:REF,NOICF" "/DEBUG" "/PDBALTPATH:%_PDB%" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\intrinsic.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\liballoc.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\libcore.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\libstd.natvis"
  = note: some arguments are omitted. use `--verbose` to show all linker arguments
  = note: LINK : fatal error LNK1181: cannot open input file 'windows.0.52.0.lib'␍

error: aborting due to 1 previous error
------------------------------------------



---- [run-make] tests\run-make\broken-pipe-no-ice stdout ----

error: run-make test failed: could not build `rmake.rs` recipe
status: exit code: 1
command: "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0\\bin\\rustc.exe" "-o" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\test\\run-make\\broken-pipe-no-ice\\rmake.exe" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\deps" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\release\\deps" "--extern" "run_make_support=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\librun_make_support.rlib" "--edition=2021" "D:\\a\\rust\\rust\\tests\\run-make\\broken-pipe-no-ice\\rmake.rs" "-Cprefer-dynamic" "-Dunused_must_use"
--- stderr -------------------------------
error: linking with `link.exe` failed: exit code: 1181
  |
  |
  = note: "C:\\Program Files\\Microsoft Visual Studio\\2022\\Enterprise\\VC\\Tools\\MSVC\\14.43.34808\\bin\\HostX64\\x64\\link.exe" "/NOLOGO" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcIBXTv4\\symbols.o" "<3 object files omitted>" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release/{librun_make_support.rlib}.rlib" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\deps/{libwasmparser-e17ddfbaf3cb6dbd.rlib,libbitflags-f8aa5ad34c8e2192.rlib,libserde_json-44b0399bb82cc3d3.rlib,libitoa-1aa11874bb14f79c.rlib,libryu-00ecf1edd3f1aa1e.rlib,libos_pipe-ccd1d19fd67d00bd.rlib,libwindows_sys-392233c961911690.rlib,libwindows_targets-1d0a7b4087b1f694.rlib,liblibc-f67bd989609867e9.rlib,libgimli-c8cdb048c278fda4.rlib,libfallible_iterator-fef16def6ec0eeff.rlib,libindexmap-893a04b27834a2ed.rlib,libequivalent-9793e896359164a2.rlib,libhashbrown-0d302631dbd6fe4f.rlib,libstable_deref_trait-72c93ece406d471b.rlib,libbstr-bed2534388c6815c.rlib,libobject-c6e3523ecf5a2db0.rlib,libruzstd-66678ea31a86f63c.rlib,libtwox_hash-3936dccc26266be8.rlib,libstatic_assertions-dbfe7f0aa3fa4065.rlib,libflate2-697c19cbed054ceb.rlib,libminiz_oxide-27fd8e4dc95ec84b.rlib,libadler2-07b36529be4a3513.rlib,libcrc32fast-437f8e19f397e866.rlib,libcfg_if-fca6657bc1ff4d90.rlib,libsimilar-6f15f3c784de51af.rlib,libregex-d89718c8f0c97590.rlib,libregex_automata-138ad0a82e2567f6.rlib,libaho_corasick-94f4335b9e39faa5.rlib,libmemchr-cbfe07f1e8672f04.rlib,libregex_syntax-5938dfb9732fae4f.rlib,libbuild_helper-4c9261a7b94adf93.rlib,libserde-65a76ab0d9b64a93.rlib}.rlib" "<sysroot>\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\std-f6e28d62d520a8c0.dll.lib" "<sysroot>\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib/{libcompiler_builtins-*}.rlib" "windows.0.52.0.lib" "legacy_stdio_definitions.lib" "kernel32.lib" "kernel32.lib" "advapi32.lib" "ntdll.lib" "userenv.lib" "ws2_32.lib" "dbghelp.lib" "/defaultlib:msvcrt" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcIBXTv4\\api-ms-win-core-synch-l1-2-0.dll_imports_indirect.lib" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcIBXTv4\\bcryptprimitives.dll_imports_indirect.lib" "/NXCOMPAT" "/OUT:D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\test\\run-make\\broken-pipe-no-ice\\rmake.exe" "/OPT:REF,NOICF" "/DEBUG" "/PDBALTPATH:%_PDB%" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\intrinsic.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\liballoc.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\libcore.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\libstd.natvis"
  = note: some arguments are omitted. use `--verbose` to show all linker arguments
  = note: LINK : fatal error LNK1181: cannot open input file 'windows.0.52.0.lib'␍

error: aborting due to 1 previous error
------------------------------------------



---- [run-make] tests\run-make\c-link-to-rust-dylib stdout ----

error: run-make test failed: could not build `rmake.rs` recipe
status: exit code: 1
command: "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0\\bin\\rustc.exe" "-o" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\test\\run-make\\c-link-to-rust-dylib\\rmake.exe" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\deps" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\release\\deps" "--extern" "run_make_support=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\librun_make_support.rlib" "--edition=2021" "D:\\a\\rust\\rust\\tests\\run-make\\c-link-to-rust-dylib\\rmake.rs" "-Cprefer-dynamic" "-Dunused_must_use"
--- stderr -------------------------------
error: linking with `link.exe` failed: exit code: 1181
  |
  |
  = note: "C:\\Program Files\\Microsoft Visual Studio\\2022\\Enterprise\\VC\\Tools\\MSVC\\14.43.34808\\bin\\HostX64\\x64\\link.exe" "/NOLOGO" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcOFmM6J\\symbols.o" "<1 object files omitted>" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release/{librun_make_support.rlib}.rlib" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\deps/{libwasmparser-e17ddfbaf3cb6dbd.rlib,libbitflags-f8aa5ad34c8e2192.rlib,libserde_json-44b0399bb82cc3d3.rlib,libitoa-1aa11874bb14f79c.rlib,libryu-00ecf1edd3f1aa1e.rlib,libos_pipe-ccd1d19fd67d00bd.rlib,libwindows_sys-392233c961911690.rlib,libwindows_targets-1d0a7b4087b1f694.rlib,liblibc-f67bd989609867e9.rlib,libgimli-c8cdb048c278fda4.rlib,libfallible_iterator-fef16def6ec0eeff.rlib,libindexmap-893a04b27834a2ed.rlib,libequivalent-9793e896359164a2.rlib,libhashbrown-0d302631dbd6fe4f.rlib,libstable_deref_trait-72c93ece406d471b.rlib,libbstr-bed2534388c6815c.rlib,libobject-c6e3523ecf5a2db0.rlib,libruzstd-66678ea31a86f63c.rlib,libtwox_hash-3936dccc26266be8.rlib,libstatic_assertions-dbfe7f0aa3fa4065.rlib,libflate2-697c19cbed054ceb.rlib,libminiz_oxide-27fd8e4dc95ec84b.rlib,libadler2-07b36529be4a3513.rlib,libcrc32fast-437f8e19f397e866.rlib,libcfg_if-fca6657bc1ff4d90.rlib,libsimilar-6f15f3c784de51af.rlib,libregex-d89718c8f0c97590.rlib,libregex_automata-138ad0a82e2567f6.rlib,libaho_corasick-94f4335b9e39faa5.rlib,libmemchr-cbfe07f1e8672f04.rlib,libregex_syntax-5938dfb9732fae4f.rlib,libbuild_helper-4c9261a7b94adf93.rlib,libserde-65a76ab0d9b64a93.rlib}.rlib" "<sysroot>\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\std-f6e28d62d520a8c0.dll.lib" "<sysroot>\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib/{libcompiler_builtins-*}.rlib" "windows.0.52.0.lib" "legacy_stdio_definitions.lib" "kernel32.lib" "kernel32.lib" "advapi32.lib" "ntdll.lib" "userenv.lib" "ws2_32.lib" "dbghelp.lib" "/defaultlib:msvcrt" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcOFmM6J\\api-ms-win-core-synch-l1-2-0.dll_imports_indirect.lib" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcOFmM6J\\bcryptprimitives.dll_imports_indirect.lib" "/NXCOMPAT" "/OUT:D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\test\\run-make\\c-link-to-rust-dylib\\rmake.exe" "/OPT:REF,NOICF" "/DEBUG" "/PDBALTPATH:%_PDB%" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\intrinsic.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\liballoc.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\libcore.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\libstd.natvis"
  = note: some arguments are omitted. use `--verbose` to show all linker arguments
  = note: LINK : fatal error LNK1181: cannot open input file 'windows.0.52.0.lib'␍

error: aborting due to 1 previous error
------------------------------------------



---- [run-make] tests\run-make\c-link-to-rust-staticlib stdout ----

error: run-make test failed: could not build `rmake.rs` recipe
status: exit code: 1
command: "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0\\bin\\rustc.exe" "-o" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\test\\run-make\\c-link-to-rust-staticlib\\rmake.exe" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\deps" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\release\\deps" "--extern" "run_make_support=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\librun_make_support.rlib" "--edition=2021" "D:\\a\\rust\\rust\\tests\\run-make\\c-link-to-rust-staticlib\\rmake.rs" "-Cprefer-dynamic" "-Dunused_must_use"
--- stderr -------------------------------
error: linking with `link.exe` failed: exit code: 1181
  |
  |
  = note: "C:\\Program Files\\Microsoft Visual Studio\\2022\\Enterprise\\VC\\Tools\\MSVC\\14.43.34808\\bin\\HostX64\\x64\\link.exe" "/NOLOGO" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcboyGM3\\symbols.o" "<1 object files omitted>" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release/{librun_make_support.rlib}.rlib" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\deps/{libwasmparser-e17ddfbaf3cb6dbd.rlib,libbitflags-f8aa5ad34c8e2192.rlib,libserde_json-44b0399bb82cc3d3.rlib,libitoa-1aa11874bb14f79c.rlib,libryu-00ecf1edd3f1aa1e.rlib,libos_pipe-ccd1d19fd67d00bd.rlib,libwindows_sys-392233c961911690.rlib,libwindows_targets-1d0a7b4087b1f694.rlib,liblibc-f67bd989609867e9.rlib,libgimli-c8cdb048c278fda4.rlib,libfallible_iterator-fef16def6ec0eeff.rlib,libindexmap-893a04b27834a2ed.rlib,libequivalent-9793e896359164a2.rlib,libhashbrown-0d302631dbd6fe4f.rlib,libstable_deref_trait-72c93ece406d471b.rlib,libbstr-bed2534388c6815c.rlib,libobject-c6e3523ecf5a2db0.rlib,libruzstd-66678ea31a86f63c.rlib,libtwox_hash-3936dccc26266be8.rlib,libstatic_assertions-dbfe7f0aa3fa4065.rlib,libflate2-697c19cbed054ceb.rlib,libminiz_oxide-27fd8e4dc95ec84b.rlib,libadler2-07b36529be4a3513.rlib,libcrc32fast-437f8e19f397e866.rlib,libcfg_if-fca6657bc1ff4d90.rlib,libsimilar-6f15f3c784de51af.rlib,libregex-d89718c8f0c97590.rlib,libregex_automata-138ad0a82e2567f6.rlib,libaho_corasick-94f4335b9e39faa5.rlib,libmemchr-cbfe07f1e8672f04.rlib,libregex_syntax-5938dfb9732fae4f.rlib,libbuild_helper-4c9261a7b94adf93.rlib,libserde-65a76ab0d9b64a93.rlib}.rlib" "<sysroot>\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\std-f6e28d62d520a8c0.dll.lib" "<sysroot>\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib/{libcompiler_builtins-*}.rlib" "windows.0.52.0.lib" "legacy_stdio_definitions.lib" "kernel32.lib" "kernel32.lib" "advapi32.lib" "ntdll.lib" "userenv.lib" "ws2_32.lib" "dbghelp.lib" "/defaultlib:msvcrt" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcboyGM3\\api-ms-win-core-synch-l1-2-0.dll_imports_indirect.lib" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcboyGM3\\bcryptprimitives.dll_imports_indirect.lib" "/NXCOMPAT" "/OUT:D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\test\\run-make\\c-link-to-rust-staticlib\\rmake.exe" "/OPT:REF,NOICF" "/DEBUG" "/PDBALTPATH:%_PDB%" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\intrinsic.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\liballoc.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\libcore.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\libstd.natvis"
  = note: some arguments are omitted. use `--verbose` to show all linker arguments
  = note: LINK : fatal error LNK1181: cannot open input file 'windows.0.52.0.lib'␍

error: aborting due to 1 previous error
------------------------------------------



---- [run-make] tests\run-make\c-link-to-rust-va-list-fn stdout ----

error: run-make test failed: could not build `rmake.rs` recipe
status: exit code: 1
command: "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0\\bin\\rustc.exe" "-o" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\test\\run-make\\c-link-to-rust-va-list-fn\\rmake.exe" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\deps" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\release\\deps" "--extern" "run_make_support=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\librun_make_support.rlib" "--edition=2021" "D:\\a\\rust\\rust\\tests\\run-make\\c-link-to-rust-va-list-fn\\rmake.rs" "-Cprefer-dynamic" "-Dunused_must_use"
--- stderr -------------------------------
error: linking with `link.exe` failed: exit code: 1181
  |
  |
  = note: "C:\\Program Files\\Microsoft Visual Studio\\2022\\Enterprise\\VC\\Tools\\MSVC\\14.43.34808\\bin\\HostX64\\x64\\link.exe" "/NOLOGO" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcczkBWw\\symbols.o" "<1 object files omitted>" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release/{librun_make_support.rlib}.rlib" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\deps/{libwasmparser-e17ddfbaf3cb6dbd.rlib,libbitflags-f8aa5ad34c8e2192.rlib,libserde_json-44b0399bb82cc3d3.rlib,libitoa-1aa11874bb14f79c.rlib,libryu-00ecf1edd3f1aa1e.rlib,libos_pipe-ccd1d19fd67d00bd.rlib,libwindows_sys-392233c961911690.rlib,libwindows_targets-1d0a7b4087b1f694.rlib,liblibc-f67bd989609867e9.rlib,libgimli-c8cdb048c278fda4.rlib,libfallible_iterator-fef16def6ec0eeff.rlib,libindexmap-893a04b27834a2ed.rlib,libequivalent-9793e896359164a2.rlib,libhashbrown-0d302631dbd6fe4f.rlib,libstable_deref_trait-72c93ece406d471b.rlib,libbstr-bed2534388c6815c.rlib,libobject-c6e3523ecf5a2db0.rlib,libruzstd-66678ea31a86f63c.rlib,libtwox_hash-3936dccc26266be8.rlib,libstatic_assertions-dbfe7f0aa3fa4065.rlib,libflate2-697c19cbed054ceb.rlib,libminiz_oxide-27fd8e4dc95ec84b.rlib,libadler2-07b36529be4a3513.rlib,libcrc32fast-437f8e19f397e866.rlib,libcfg_if-fca6657bc1ff4d90.rlib,libsimilar-6f15f3c784de51af.rlib,libregex-d89718c8f0c97590.rlib,libregex_automata-138ad0a82e2567f6.rlib,libaho_corasick-94f4335b9e39faa5.rlib,libmemchr-cbfe07f1e8672f04.rlib,libregex_syntax-5938dfb9732fae4f.rlib,libbuild_helper-4c9261a7b94adf93.rlib,libserde-65a76ab0d9b64a93.rlib}.rlib" "<sysroot>\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\std-f6e28d62d520a8c0.dll.lib" "<sysroot>\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib/{libcompiler_builtins-*}.rlib" "windows.0.52.0.lib" "legacy_stdio_definitions.lib" "kernel32.lib" "kernel32.lib" "advapi32.lib" "ntdll.lib" "userenv.lib" "ws2_32.lib" "dbghelp.lib" "/defaultlib:msvcrt" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcczkBWw\\api-ms-win-core-synch-l1-2-0.dll_imports_indirect.lib" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcczkBWw\\bcryptprimitives.dll_imports_indirect.lib" "/NXCOMPAT" "/OUT:D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\test\\run-make\\c-link-to-rust-va-list-fn\\rmake.exe" "/OPT:REF,NOICF" "/DEBUG" "/PDBALTPATH:%_PDB%" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\intrinsic.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\liballoc.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\libcore.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\libstd.natvis"
  = note: some arguments are omitted. use `--verbose` to show all linker arguments
  = note: LINK : fatal error LNK1181: cannot open input file 'windows.0.52.0.lib'␍

error: aborting due to 1 previous error
------------------------------------------



---- [run-make] tests\run-make\c-static-dylib stdout ----

error: run-make test failed: could not build `rmake.rs` recipe
status: exit code: 1
command: "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0\\bin\\rustc.exe" "-o" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\test\\run-make\\c-static-dylib\\rmake.exe" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\deps" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\release\\deps" "--extern" "run_make_support=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\librun_make_support.rlib" "--edition=2021" "D:\\a\\rust\\rust\\tests\\run-make\\c-static-dylib\\rmake.rs" "-Cprefer-dynamic" "-Dunused_must_use"
--- stderr -------------------------------
error: linking with `link.exe` failed: exit code: 1181
  |
  |
  = note: "C:\\Program Files\\Microsoft Visual Studio\\2022\\Enterprise\\VC\\Tools\\MSVC\\14.43.34808\\bin\\HostX64\\x64\\link.exe" "/NOLOGO" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcessD7r\\symbols.o" "<1 object files omitted>" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release/{librun_make_support.rlib}.rlib" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\deps/{libwasmparser-e17ddfbaf3cb6dbd.rlib,libbitflags-f8aa5ad34c8e2192.rlib,libserde_json-44b0399bb82cc3d3.rlib,libitoa-1aa11874bb14f79c.rlib,libryu-00ecf1edd3f1aa1e.rlib,libos_pipe-ccd1d19fd67d00bd.rlib,libwindows_sys-392233c961911690.rlib,libwindows_targets-1d0a7b4087b1f694.rlib,liblibc-f67bd989609867e9.rlib,libgimli-c8cdb048c278fda4.rlib,libfallible_iterator-fef16def6ec0eeff.rlib,libindexmap-893a04b27834a2ed.rlib,libequivalent-9793e896359164a2.rlib,libhashbrown-0d302631dbd6fe4f.rlib,libstable_deref_trait-72c93ece406d471b.rlib,libbstr-bed2534388c6815c.rlib,libobject-c6e3523ecf5a2db0.rlib,libruzstd-66678ea31a86f63c.rlib,libtwox_hash-3936dccc26266be8.rlib,libstatic_assertions-dbfe7f0aa3fa4065.rlib,libflate2-697c19cbed054ceb.rlib,libminiz_oxide-27fd8e4dc95ec84b.rlib,libadler2-07b36529be4a3513.rlib,libcrc32fast-437f8e19f397e866.rlib,libcfg_if-fca6657bc1ff4d90.rlib,libsimilar-6f15f3c784de51af.rlib,libregex-d89718c8f0c97590.rlib,libregex_automata-138ad0a82e2567f6.rlib,libaho_corasick-94f4335b9e39faa5.rlib,libmemchr-cbfe07f1e8672f04.rlib,libregex_syntax-5938dfb9732fae4f.rlib,libbuild_helper-4c9261a7b94adf93.rlib,libserde-65a76ab0d9b64a93.rlib}.rlib" "<sysroot>\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\std-f6e28d62d520a8c0.dll.lib" "<sysroot>\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib/{libcompiler_builtins-*}.rlib" "windows.0.52.0.lib" "legacy_stdio_definitions.lib" "kernel32.lib" "kernel32.lib" "advapi32.lib" "ntdll.lib" "userenv.lib" "ws2_32.lib" "dbghelp.lib" "/defaultlib:msvcrt" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcessD7r\\api-ms-win-core-synch-l1-2-0.dll_imports_indirect.lib" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcessD7r\\bcryptprimitives.dll_imports_indirect.lib" "/NXCOMPAT" "/OUT:D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\test\\run-make\\c-static-dylib\\rmake.exe" "/OPT:REF,NOICF" "/DEBUG" "/PDBALTPATH:%_PDB%" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\intrinsic.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\liballoc.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\libcore.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\libstd.natvis"
  = note: some arguments are omitted. use `--verbose` to show all linker arguments
  = note: LINK : fatal error LNK1181: cannot open input file 'windows.0.52.0.lib'␍

error: aborting due to 1 previous error
------------------------------------------



---- [run-make] tests\run-make\c-static-rlib stdout ----

error: run-make test failed: could not build `rmake.rs` recipe
status: exit code: 1
command: "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0\\bin\\rustc.exe" "-o" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\test\\run-make\\c-static-rlib\\rmake.exe" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\deps" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\release\\deps" "--extern" "run_make_support=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\librun_make_support.rlib" "--edition=2021" "D:\\a\\rust\\rust\\tests\\run-make\\c-static-rlib\\rmake.rs" "-Cprefer-dynamic" "-Dunused_must_use"
--- stderr -------------------------------
error: linking with `link.exe` failed: exit code: 1181
  |
  |
  = note: "C:\\Program Files\\Microsoft Visual Studio\\2022\\Enterprise\\VC\\Tools\\MSVC\\14.43.34808\\bin\\HostX64\\x64\\link.exe" "/NOLOGO" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcLyFgRm\\symbols.o" "<1 object files omitted>" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release/{librun_make_support.rlib}.rlib" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\deps/{libwasmparser-e17ddfbaf3cb6dbd.rlib,libbitflags-f8aa5ad34c8e2192.rlib,libserde_json-44b0399bb82cc3d3.rlib,libitoa-1aa11874bb14f79c.rlib,libryu-00ecf1edd3f1aa1e.rlib,libos_pipe-ccd1d19fd67d00bd.rlib,libwindows_sys-392233c961911690.rlib,libwindows_targets-1d0a7b4087b1f694.rlib,liblibc-f67bd989609867e9.rlib,libgimli-c8cdb048c278fda4.rlib,libfallible_iterator-fef16def6ec0eeff.rlib,libindexmap-893a04b27834a2ed.rlib,libequivalent-9793e896359164a2.rlib,libhashbrown-0d302631dbd6fe4f.rlib,libstable_deref_trait-72c93ece406d471b.rlib,libbstr-bed2534388c6815c.rlib,libobject-c6e3523ecf5a2db0.rlib,libruzstd-66678ea31a86f63c.rlib,libtwox_hash-3936dccc26266be8.rlib,libstatic_assertions-dbfe7f0aa3fa4065.rlib,libflate2-697c19cbed054ceb.rlib,libminiz_oxide-27fd8e4dc95ec84b.rlib,libadler2-07b36529be4a3513.rlib,libcrc32fast-437f8e19f397e866.rlib,libcfg_if-fca6657bc1ff4d90.rlib,libsimilar-6f15f3c784de51af.rlib,libregex-d89718c8f0c97590.rlib,libregex_automata-138ad0a82e2567f6.rlib,libaho_corasick-94f4335b9e39faa5.rlib,libmemchr-cbfe07f1e8672f04.rlib,libregex_syntax-5938dfb9732fae4f.rlib,libbuild_helper-4c9261a7b94adf93.rlib,libserde-65a76ab0d9b64a93.rlib}.rlib" "<sysroot>\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\std-f6e28d62d520a8c0.dll.lib" "<sysroot>\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib/{libcompiler_builtins-*}.rlib" "windows.0.52.0.lib" "legacy_stdio_definitions.lib" "kernel32.lib" "kernel32.lib" "advapi32.lib" "ntdll.lib" "userenv.lib" "ws2_32.lib" "dbghelp.lib" "/defaultlib:msvcrt" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcLyFgRm\\api-ms-win-core-synch-l1-2-0.dll_imports_indirect.lib" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcLyFgRm\\bcryptprimitives.dll_imports_indirect.lib" "/NXCOMPAT" "/OUT:D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\test\\run-make\\c-static-rlib\\rmake.exe" "/OPT:REF,NOICF" "/DEBUG" "/PDBALTPATH:%_PDB%" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\intrinsic.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\liballoc.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\libcore.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\libstd.natvis"
  = note: some arguments are omitted. use `--verbose` to show all linker arguments
  = note: LINK : fatal error LNK1181: cannot open input file 'windows.0.52.0.lib'␍

error: aborting due to 1 previous error
------------------------------------------



---- [run-make] tests\run-make\c-unwind-abi-catch-panic stdout ----

error: run-make test failed: could not build `rmake.rs` recipe
status: exit code: 1
command: "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0\\bin\\rustc.exe" "-o" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\test\\run-make\\c-unwind-abi-catch-panic\\rmake.exe" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\deps" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\release\\deps" "--extern" "run_make_support=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\librun_make_support.rlib" "--edition=2021" "D:\\a\\rust\\rust\\tests\\run-make\\c-unwind-abi-catch-panic\\rmake.rs" "-Cprefer-dynamic" "-Dunused_must_use"
--- stderr -------------------------------
error: linking with `link.exe` failed: exit code: 1181
  |
  |
  = note: "C:\\Program Files\\Microsoft Visual Studio\\2022\\Enterprise\\VC\\Tools\\MSVC\\14.43.34808\\bin\\HostX64\\x64\\link.exe" "/NOLOGO" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustccRSzkw\\symbols.o" "<1 object files omitted>" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release/{librun_make_support.rlib}.rlib" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\deps/{libwasmparser-e17ddfbaf3cb6dbd.rlib,libbitflags-f8aa5ad34c8e2192.rlib,libserde_json-44b0399bb82cc3d3.rlib,libitoa-1aa11874bb14f79c.rlib,libryu-00ecf1edd3f1aa1e.rlib,libos_pipe-ccd1d19fd67d00bd.rlib,libwindows_sys-392233c961911690.rlib,libwindows_targets-1d0a7b4087b1f694.rlib,liblibc-f67bd989609867e9.rlib,libgimli-c8cdb048c278fda4.rlib,libfallible_iterator-fef16def6ec0eeff.rlib,libindexmap-893a04b27834a2ed.rlib,libequivalent-9793e896359164a2.rlib,libhashbrown-0d302631dbd6fe4f.rlib,libstable_deref_trait-72c93ece406d471b.rlib,libbstr-bed2534388c6815c.rlib,libobject-c6e3523ecf5a2db0.rlib,libruzstd-66678ea31a86f63c.rlib,libtwox_hash-3936dccc26266be8.rlib,libstatic_assertions-dbfe7f0aa3fa4065.rlib,libflate2-697c19cbed054ceb.rlib,libminiz_oxide-27fd8e4dc95ec84b.rlib,libadler2-07b36529be4a3513.rlib,libcrc32fast-437f8e19f397e866.rlib,libcfg_if-fca6657bc1ff4d90.rlib,libsimilar-6f15f3c784de51af.rlib,libregex-d89718c8f0c97590.rlib,libregex_automata-138ad0a82e2567f6.rlib,libaho_corasick-94f4335b9e39faa5.rlib,libmemchr-cbfe07f1e8672f04.rlib,libregex_syntax-5938dfb9732fae4f.rlib,libbuild_helper-4c9261a7b94adf93.rlib,libserde-65a76ab0d9b64a93.rlib}.rlib" "<sysroot>\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\std-f6e28d62d520a8c0.dll.lib" "<sysroot>\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib/{libcompiler_builtins-*}.rlib" "windows.0.52.0.lib" "legacy_stdio_definitions.lib" "kernel32.lib" "kernel32.lib" "advapi32.lib" "ntdll.lib" "userenv.lib" "ws2_32.lib" "dbghelp.lib" "/defaultlib:msvcrt" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustccRSzkw\\api-ms-win-core-synch-l1-2-0.dll_imports_indirect.lib" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustccRSzkw\\bcryptprimitives.dll_imports_indirect.lib" "/NXCOMPAT" "/OUT:D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\test\\run-make\\c-unwind-abi-catch-panic\\rmake.exe" "/OPT:REF,NOICF" "/DEBUG" "/PDBALTPATH:%_PDB%" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\intrinsic.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\liballoc.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\libcore.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\libstd.natvis"
  = note: some arguments are omitted. use `--verbose` to show all linker arguments
  = note: LINK : fatal error LNK1181: cannot open input file 'windows.0.52.0.lib'␍

error: aborting due to 1 previous error
------------------------------------------



---- [run-make] tests\run-make\cdylib stdout ----

error: run-make test failed: could not build `rmake.rs` recipe
status: exit code: 1
command: "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0\\bin\\rustc.exe" "-o" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\test\\run-make\\cdylib\\rmake.exe" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\deps" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\release\\deps" "--extern" "run_make_support=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\librun_make_support.rlib" "--edition=2021" "D:\\a\\rust\\rust\\tests\\run-make\\cdylib\\rmake.rs" "-Cprefer-dynamic" "-Dunused_must_use"
--- stderr -------------------------------
error: linking with `link.exe` failed: exit code: 1181
  |
  |
  = note: "C:\\Program Files\\Microsoft Visual Studio\\2022\\Enterprise\\VC\\Tools\\MSVC\\14.43.34808\\bin\\HostX64\\x64\\link.exe" "/NOLOGO" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcQCtmLS\\symbols.o" "<1 object files omitted>" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release/{librun_make_support.rlib}.rlib" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\deps/{libwasmparser-e17ddfbaf3cb6dbd.rlib,libbitflags-f8aa5ad34c8e2192.rlib,libserde_json-44b0399bb82cc3d3.rlib,libitoa-1aa11874bb14f79c.rlib,libryu-00ecf1edd3f1aa1e.rlib,libos_pipe-ccd1d19fd67d00bd.rlib,libwindows_sys-392233c961911690.rlib,libwindows_targets-1d0a7b4087b1f694.rlib,liblibc-f67bd989609867e9.rlib,libgimli-c8cdb048c278fda4.rlib,libfallible_iterator-fef16def6ec0eeff.rlib,libindexmap-893a04b27834a2ed.rlib,libequivalent-9793e896359164a2.rlib,libhashbrown-0d302631dbd6fe4f.rlib,libstable_deref_trait-72c93ece406d471b.rlib,libbstr-bed2534388c6815c.rlib,libobject-c6e3523ecf5a2db0.rlib,libruzstd-66678ea31a86f63c.rlib,libtwox_hash-3936dccc26266be8.rlib,libstatic_assertions-dbfe7f0aa3fa4065.rlib,libflate2-697c19cbed054ceb.rlib,libminiz_oxide-27fd8e4dc95ec84b.rlib,libadler2-07b36529be4a3513.rlib,libcrc32fast-437f8e19f397e866.rlib,libcfg_if-fca6657bc1ff4d90.rlib,libsimilar-6f15f3c784de51af.rlib,libregex-d89718c8f0c97590.rlib,libregex_automata-138ad0a82e2567f6.rlib,libaho_corasick-94f4335b9e39faa5.rlib,libmemchr-cbfe07f1e8672f04.rlib,libregex_syntax-5938dfb9732fae4f.rlib,libbuild_helper-4c9261a7b94adf93.rlib,libserde-65a76ab0d9b64a93.rlib}.rlib" "<sysroot>\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\std-f6e28d62d520a8c0.dll.lib" "<sysroot>\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib/{libcompiler_builtins-*}.rlib" "windows.0.52.0.lib" "legacy_stdio_definitions.lib" "kernel32.lib" "kernel32.lib" "advapi32.lib" "ntdll.lib" "userenv.lib" "ws2_32.lib" "dbghelp.lib" "/defaultlib:msvcrt" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcQCtmLS\\api-ms-win-core-synch-l1-2-0.dll_imports_indirect.lib" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcQCtmLS\\bcryptprimitives.dll_imports_indirect.lib" "/NXCOMPAT" "/OUT:D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\test\\run-make\\cdylib\\rmake.exe" "/OPT:REF,NOICF" "/DEBUG" "/PDBALTPATH:%_PDB%" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\intrinsic.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\liballoc.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\libcore.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\libstd.natvis"
  = note: some arguments are omitted. use `--verbose` to show all linker arguments
  = note: LINK : fatal error LNK1181: cannot open input file 'windows.0.52.0.lib'␍

error: aborting due to 1 previous error
------------------------------------------



---- [run-make] tests\run-make\c-unwind-abi-catch-lib-panic stdout ----

error: run-make test failed: could not build `rmake.rs` recipe
status: exit code: 1
command: "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0\\bin\\rustc.exe" "-o" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\test\\run-make\\c-unwind-abi-catch-lib-panic\\rmake.exe" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\deps" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\release\\deps" "--extern" "run_make_support=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\librun_make_support.rlib" "--edition=2021" "D:\\a\\rust\\rust\\tests\\run-make\\c-unwind-abi-catch-lib-panic\\rmake.rs" "-Cprefer-dynamic" "-Dunused_must_use"
--- stderr -------------------------------
error: linking with `link.exe` failed: exit code: 1181
  |
  |
  = note: "C:\\Program Files\\Microsoft Visual Studio\\2022\\Enterprise\\VC\\Tools\\MSVC\\14.43.34808\\bin\\HostX64\\x64\\link.exe" "/NOLOGO" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcHzMVd6\\symbols.o" "<1 object files omitted>" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release/{librun_make_support.rlib}.rlib" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\deps/{libwasmparser-e17ddfbaf3cb6dbd.rlib,libbitflags-f8aa5ad34c8e2192.rlib,libserde_json-44b0399bb82cc3d3.rlib,libitoa-1aa11874bb14f79c.rlib,libryu-00ecf1edd3f1aa1e.rlib,libos_pipe-ccd1d19fd67d00bd.rlib,libwindows_sys-392233c961911690.rlib,libwindows_targets-1d0a7b4087b1f694.rlib,liblibc-f67bd989609867e9.rlib,libgimli-c8cdb048c278fda4.rlib,libfallible_iterator-fef16def6ec0eeff.rlib,libindexmap-893a04b27834a2ed.rlib,libequivalent-9793e896359164a2.rlib,libhashbrown-0d302631dbd6fe4f.rlib,libstable_deref_trait-72c93ece406d471b.rlib,libbstr-bed2534388c6815c.rlib,libobject-c6e3523ecf5a2db0.rlib,libruzstd-66678ea31a86f63c.rlib,libtwox_hash-3936dccc26266be8.rlib,libstatic_assertions-dbfe7f0aa3fa4065.rlib,libflate2-697c19cbed054ceb.rlib,libminiz_oxide-27fd8e4dc95ec84b.rlib,libadler2-07b36529be4a3513.rlib,libcrc32fast-437f8e19f397e866.rlib,libcfg_if-fca6657bc1ff4d90.rlib,libsimilar-6f15f3c784de51af.rlib,libregex-d89718c8f0c97590.rlib,libregex_automata-138ad0a82e2567f6.rlib,libaho_corasick-94f4335b9e39faa5.rlib,libmemchr-cbfe07f1e8672f04.rlib,libregex_syntax-5938dfb9732fae4f.rlib,libbuild_helper-4c9261a7b94adf93.rlib,libserde-65a76ab0d9b64a93.rlib}.rlib" "<sysroot>\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\std-f6e28d62d520a8c0.dll.lib" "<sysroot>\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib/{libcompiler_builtins-*}.rlib" "windows.0.52.0.lib" "legacy_stdio_definitions.lib" "kernel32.lib" "kernel32.lib" "advapi32.lib" "ntdll.lib" "userenv.lib" "ws2_32.lib" "dbghelp.lib" "/defaultlib:msvcrt" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcHzMVd6\\api-ms-win-core-synch-l1-2-0.dll_imports_indirect.lib" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcHzMVd6\\bcryptprimitives.dll_imports_indirect.lib" "/NXCOMPAT" "/OUT:D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\test\\run-make\\c-unwind-abi-catch-lib-panic\\rmake.exe" "/OPT:REF,NOICF" "/DEBUG" "/PDBALTPATH:%_PDB%" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\intrinsic.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\liballoc.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\libcore.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\libstd.natvis"
  = note: some arguments are omitted. use `--verbose` to show all linker arguments
  = note: LINK : fatal error LNK1181: cannot open input file 'windows.0.52.0.lib'␍

error: aborting due to 1 previous error
------------------------------------------



---- [run-make] tests\run-make\cdylib-dylib-linkage stdout ----

error: run-make test failed: could not build `rmake.rs` recipe
status: exit code: 1
command: "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0\\bin\\rustc.exe" "-o" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\test\\run-make\\cdylib-dylib-linkage\\rmake.exe" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\deps" "-Ldependency=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\release\\deps" "--extern" "run_make_support=D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\librun_make_support.rlib" "--edition=2021" "D:\\a\\rust\\rust\\tests\\run-make\\cdylib-dylib-linkage\\rmake.rs" "-Cprefer-dynamic" "-Dunused_must_use"
--- stderr -------------------------------
error: linking with `link.exe` failed: exit code: 1181
  |
  |
  = note: "C:\\Program Files\\Microsoft Visual Studio\\2022\\Enterprise\\VC\\Tools\\MSVC\\14.43.34808\\bin\\HostX64\\x64\\link.exe" "/NOLOGO" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcSjKkTe\\symbols.o" "<3 object files omitted>" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release/{librun_make_support.rlib}.rlib" "D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\stage0-bootstrap-tools\\x86_64-pc-windows-msvc\\release\\deps/{libwasmparser-e17ddfbaf3cb6dbd.rlib,libbitflags-f8aa5ad34c8e2192.rlib,libserde_json-44b0399bb82cc3d3.rlib,libitoa-1aa11874bb14f79c.rlib,libryu-00ecf1edd3f1aa1e.rlib,libos_pipe-ccd1d19fd67d00bd.rlib,libwindows_sys-392233c961911690.rlib,libwindows_targets-1d0a7b4087b1f694.rlib,liblibc-f67bd989609867e9.rlib,libgimli-c8cdb048c278fda4.rlib,libfallible_iterator-fef16def6ec0eeff.rlib,libindexmap-893a04b27834a2ed.rlib,libequivalent-9793e896359164a2.rlib,libhashbrown-0d302631dbd6fe4f.rlib,libstable_deref_trait-72c93ece406d471b.rlib,libbstr-bed2534388c6815c.rlib,libobject-c6e3523ecf5a2db0.rlib,libruzstd-66678ea31a86f63c.rlib,libtwox_hash-3936dccc26266be8.rlib,libstatic_assertions-dbfe7f0aa3fa4065.rlib,libflate2-697c19cbed054ceb.rlib,libminiz_oxide-27fd8e4dc95ec84b.rlib,libadler2-07b36529be4a3513.rlib,libcrc32fast-437f8e19f397e866.rlib,libcfg_if-fca6657bc1ff4d90.rlib,libsimilar-6f15f3c784de51af.rlib,libregex-d89718c8f0c97590.rlib,libregex_automata-138ad0a82e2567f6.rlib,libaho_corasick-94f4335b9e39faa5.rlib,libmemchr-cbfe07f1e8672f04.rlib,libregex_syntax-5938dfb9732fae4f.rlib,libbuild_helper-4c9261a7b94adf93.rlib,libserde-65a76ab0d9b64a93.rlib}.rlib" "<sysroot>\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib\\std-f6e28d62d520a8c0.dll.lib" "<sysroot>\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib/{libcompiler_builtins-*}.rlib" "windows.0.52.0.lib" "legacy_stdio_definitions.lib" "kernel32.lib" "kernel32.lib" "advapi32.lib" "ntdll.lib" "userenv.lib" "ws2_32.lib" "dbghelp.lib" "/defaultlib:msvcrt" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcSjKkTe\\api-ms-win-core-synch-l1-2-0.dll_imports_indirect.lib" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcSjKkTe\\bcryptprimitives.dll_imports_indirect.lib" "/NXCOMPAT" "/OUT:D:\\a\\rust\\rust\\build\\x86_64-pc-windows-msvc\\test\\run-make\\cdylib-dylib-linkage\\rmake.exe" "/OPT:REF,NOICF" "/DEBUG" "/PDBALTPATH:%_PDB%" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\intrinsic.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\liballoc.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\libcore.natvis" "/NATVIS:<sysroot>\\lib\\rustlib\\etc\\libstd.natvis"
  = note: some arguments are omitted. use `--verbose` to show all linker arguments
  = note: LINK : fatal error LNK1181: cannot open input file 'windows.0.52.0.lib'␍

error: aborting due to 1 previous error
---
test result: FAILED. 0 passed; 293 failed; 89 ignored; 0 measured; 6 filtered out; finished in 24.42s

Some tests failed in compiletest suite=run-make mode=run-make host=x86_64-pc-windows-msvc target=x86_64-pc-windows-msvc
Build completed unsuccessfully in 2:31:32
make: *** [Makefile:111: ci-msvc-py] Error 1
  network time: Fri, 07 Mar 2025 08:53:54 GMT
##[error]Process completed with exit code 2.
Post job cleanup.
[command]"C:\Program Files\Git\bin\git.exe" version

@bors
Copy link
Contributor

bors commented Mar 7, 2025

💔 Test failed - checks-actions

@bors bors added S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. and removed S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. labels Mar 7, 2025
@jhpratt jhpratt closed this Mar 7, 2025
@workingjubilee workingjubilee deleted the rollup-gf8ql7h branch March 7, 2025 19:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-compiletest Area: The compiletest test runner A-run-make Area: port run-make Makefiles to rmake.rs A-rustc-dev-guide Area: rustc-dev-guide A-testsuite Area: The testsuite used to check the correctness of rustc O-hermit Operating System: Hermit O-SGX Target: SGX O-solid Operating System: SOLID O-unix Operating system: Unix-like O-wasi Operating system: Wasi, Webassembly System Interface O-wasm Target: WASM (WebAssembly), http://webassembly.org/ O-windows Operating system: Windows rollup A PR which is a rollup S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. T-bootstrap Relevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap) T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. T-libs Relevant to the library team, which will review and decide on the PR/issue.
Projects
None yet
Development

Successfully merging this pull request may close these issues.