Skip to content

Do not copy .rmeta files into the sysroot of the build compiler during check #144252

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

Draft
wants to merge 4 commits into
base: master
Choose a base branch
from

Conversation

Kobzol
Copy link
Member

@Kobzol Kobzol commented Jul 21, 2025

Before, when bootstrap did a check build of rustc stage N (with a build compiler that was stage N-1), it automatically copied the resulting .rmeta artifacts into the sysroot of the stage N-1 build compiler, so that stage N rustc_private tools such as miri could be compiled using the stage N-1 build compiler. This has a number of issues:

  • It was done unconditionally, even if no rustc_private tools were actually built.
  • If we did a check and a build of the same stage compiler in the same bootstrap invocation, the generated rmeta and rlib files could clash. This is also why you can see that check::Std actually doesn't copy the artifacts anymore (which forces us to build std instead of just checking it in a bunch of Check steps).
  • It was polluting the sysroot of the build compiler. This is especially annoying for the stage 0 compiler, because we are forced to create an artificial sysroot for it, so that we can copy new stuff into it.
  • It was very implicit in bootstrap.

Based on suggestions by @cuviper and @bjorn3, I tried to change how this behaves. Instead of copying the rmeta artifacts into the sysroot of the build compiler (from where they would be loaded implicitly), they are now stored in a separate transient bootstrap build directory, and they are then explicitly passed only when checking rustc_private tools using the -L flag. The flags are passed out-of-band through our rustc wrapper, to avoid invalidating the build cache.

Based on my local tests, this seemed to be working fine. If it works on CI, and we don't run into other issues after merging it, I'd like to do the same also for rlib artifacts generated during x build.

Based on #143816 (only the last commit is new).

r? @jieyouxu

@rustbot
Copy link
Collaborator

rustbot commented Jul 21, 2025

jieyouxu is currently at their maximum review capacity.
They may take a while to respond.

@rustbot rustbot added S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. T-bootstrap Relevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap) labels Jul 21, 2025
@rust-log-analyzer
Copy link
Collaborator

The job pr-check-2 failed! Check out the build log: (web) (plain enhanced) (plain)

Click to see the possible cause of the failure (guessed by this bot)
[RUSTC-TIMING] rustdoc_tool_binary test:false 0.048
[RUSTC-TIMING] rustdoc_tool_binary test:true 0.050
    Finished `release` profile [optimized] target(s) in 18.93s
##[endgroup]
[TIMING] core::build_steps::check::Rustdoc { compiler: CompilerForCheck { build_compiler: Compiler { stage: 0, host: x86_64-unknown-linux-gnu, forced_compiler: false }, rustc_rmeta_sysroot: Some(RustcRmetaSysroot { host_dir: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc-check-artifacts/host", target_dir: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc-check-artifacts/x86_64-unknown-linux-gnu" }) }, target: x86_64-unknown-linux-gnu } -- 18.958
##[group]Checking stage1 rustc_codegen_cranelift (x86_64-unknown-linux-gnu)
    Updating crates.io index
---
    Checking rustc_codegen_cranelift v0.1.0 (/checkout/compiler/rustc_codegen_cranelift)
[RUSTC-TIMING] rustc_codegen_cranelift test:false 1.168
    Finished `release` profile [optimized] target(s) in 23.71s
##[endgroup]
[TIMING] core::build_steps::check::CodegenBackend { build_compiler: Compiler { stage: 0, host: x86_64-unknown-linux-gnu, forced_compiler: false }, rmeta_sysroot: RustcRmetaSysroot { host_dir: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc-check-artifacts/host", target_dir: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc-check-artifacts/x86_64-unknown-linux-gnu" }, target: x86_64-unknown-linux-gnu, backend: "cranelift" } -- 23.735
##[group]Checking stage1 rustc_codegen_gcc (x86_64-unknown-linux-gnu)
    Updating crates.io index
---
    Checking rustc_codegen_gcc v0.1.0 (/checkout/compiler/rustc_codegen_gcc)
[RUSTC-TIMING] rustc_codegen_gcc test:false 1.829
    Finished `release` profile [optimized] target(s) in 5.59s
##[endgroup]
[TIMING] core::build_steps::check::CodegenBackend { build_compiler: Compiler { stage: 0, host: x86_64-unknown-linux-gnu, forced_compiler: false }, rmeta_sysroot: RustcRmetaSysroot { host_dir: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc-check-artifacts/host", target_dir: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc-check-artifacts/x86_64-unknown-linux-gnu" }, target: x86_64-unknown-linux-gnu, backend: "gcc" } -- 5.608
##[group]Checking tool clippy (stage0 -> stage1, x86_64-unknown-linux-gnu)
---
[RUSTC-TIMING] cargo_clippy test:true 0.118
[RUSTC-TIMING] compile_test test:false 0.248
    Finished `release` profile [optimized] target(s) in 24.74s
##[endgroup]
[TIMING] core::build_steps::check::Clippy { compiler: CompilerForCheck { build_compiler: Compiler { stage: 0, host: x86_64-unknown-linux-gnu, forced_compiler: false }, rustc_rmeta_sysroot: Some(RustcRmetaSysroot { host_dir: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc-check-artifacts/host", target_dir: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc-check-artifacts/x86_64-unknown-linux-gnu" }) }, target: x86_64-unknown-linux-gnu } -- 24.828
##[group]Checking tool miri (stage0 -> stage1, x86_64-unknown-linux-gnu)
---
[RUSTC-TIMING] miri test:true 0.151
[RUSTC-TIMING] miri test:false 0.181
    Finished `release` profile [optimized] target(s) in 1m 03s
##[endgroup]
[TIMING] core::build_steps::check::Miri { compiler: CompilerForCheck { build_compiler: Compiler { stage: 0, host: x86_64-unknown-linux-gnu, forced_compiler: false }, rustc_rmeta_sysroot: Some(RustcRmetaSysroot { host_dir: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc-check-artifacts/host", target_dir: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc-check-artifacts/x86_64-unknown-linux-gnu" }) }, target: x86_64-unknown-linux-gnu } -- 63.485
##[group]Checking tool cargo-miri (stage0 -> stage1, x86_64-unknown-linux-gnu)
---
[RUSTC-TIMING] cargo_miri test:true 0.140
[RUSTC-TIMING] cargo_miri test:false 0.142
    Finished `release` profile [optimized] target(s) in 6.50s
##[endgroup]
[TIMING] core::build_steps::check::CargoMiri { compiler: CompilerForCheck { build_compiler: Compiler { stage: 0, host: x86_64-unknown-linux-gnu, forced_compiler: false }, rustc_rmeta_sysroot: Some(RustcRmetaSysroot { host_dir: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc-check-artifacts/host", target_dir: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc-check-artifacts/x86_64-unknown-linux-gnu" }) }, target: x86_64-unknown-linux-gnu } -- 6.523
##[group]Checking stage1 tool miropt-test-tools (x86_64-unknown-linux-gnu)
    Checking miropt-test-tools v0.1.0 (/checkout/src/tools/miropt-test-tools)
[RUSTC-TIMING] miropt_test_tools test:true 0.033
[RUSTC-TIMING] miropt_test_tools test:false 0.045
    Finished `release` profile [optimized] target(s) in 0.21s
##[endgroup]
[TIMING] core::build_steps::check::MiroptTestTools { compiler: CompilerForCheck { build_compiler: Compiler { stage: 0, host: x86_64-unknown-linux-gnu, forced_compiler: false }, rustc_rmeta_sysroot: None }, target: x86_64-unknown-linux-gnu } -- 0.234
##[group]Checking tool rustfmt (stage0 -> stage1, x86_64-unknown-linux-gnu)
---
[RUSTC-TIMING] rustfmt_format_diff test:false 0.132
[RUSTC-TIMING] rustfmt test:true 0.055
    Finished `release` profile [optimized] target(s) in 12.07s
##[endgroup]
[TIMING] core::build_steps::check::Rustfmt { compiler: CompilerForCheck { build_compiler: Compiler { stage: 0, host: x86_64-unknown-linux-gnu, forced_compiler: false }, rustc_rmeta_sysroot: Some(RustcRmetaSysroot { host_dir: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc-check-artifacts/host", target_dir: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc-check-artifacts/x86_64-unknown-linux-gnu" }) }, target: x86_64-unknown-linux-gnu } -- 12.117
##[group]Checking tool rust-analyzer (stage0 -> stage1, x86_64-unknown-linux-gnu)
    Updating crates.io index
---
[RUSTC-TIMING] intern test:true 0.624
[RUSTC-TIMING] hir_def test:true 4.914
    Finished `release` profile [optimized] target(s) in 59.25s
##[endgroup]
[TIMING] core::build_steps::check::RustAnalyzer { compiler: CompilerForCheck { build_compiler: Compiler { stage: 0, host: x86_64-unknown-linux-gnu, forced_compiler: false }, rustc_rmeta_sysroot: Some(RustcRmetaSysroot { host_dir: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc-check-artifacts/host", target_dir: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-rustc-check-artifacts/x86_64-unknown-linux-gnu" }) }, target: x86_64-unknown-linux-gnu } -- 59.390
[TIMING] core::build_steps::compile::Sysroot { compiler: Compiler { stage: 1, host: x86_64-unknown-linux-gnu, forced_compiler: false }, force_recompile: false } -- 0.000
[TIMING] core::builder::Libdir { compiler: Compiler { stage: 1, host: x86_64-unknown-linux-gnu, forced_compiler: false }, target: x86_64-unknown-linux-gnu } -- 0.000
/checkout/obj/build/x86_64-unknown-linux-gnu/ci-llvm/bin/llvm-strip does not exist; skipping copy
##[group]Building compiler artifacts (stage0 -> stage1, x86_64-unknown-linux-gnu)
[RUSTC-TIMING] build_script_build test:false 0.238
---
[RUSTC-TIMING] test_float_parse test:false 0.074
[RUSTC-TIMING] test_float_parse test:true 0.074
    Finished `release` profile [optimized] target(s) in 11.56s
##[endgroup]
[TIMING] core::build_steps::check::TestFloatParse { compiler: CompilerForCheck { build_compiler: Compiler { stage: 1, host: x86_64-unknown-linux-gnu, forced_compiler: false }, rustc_rmeta_sysroot: None }, target: x86_64-unknown-linux-gnu } -- 11.582
##[group]Checking stage1 tool features-status-dump (x86_64-unknown-linux-gnu)
---
[RUSTC-TIMING] features_status_dump test:true 0.055
[RUSTC-TIMING] features_status_dump test:false 0.057
    Finished `release` profile [optimized] target(s) in 6.96s
##[endgroup]
[TIMING] core::build_steps::check::FeaturesStatusDump { compiler: CompilerForCheck { build_compiler: Compiler { stage: 0, host: x86_64-unknown-linux-gnu, forced_compiler: false }, rustc_rmeta_sysroot: None }, target: x86_64-unknown-linux-gnu } -- 6.991
##[group]Checking stage1 library artifacts {alloc, compiler_builtins, core, panic_abort, panic_unwind, proc_macro, std, sysroot, test, unwind} (x86_64-unknown-linux-gnu)
[RUSTC-TIMING] shlex test:false 0.108
[RUSTC-TIMING] cc test:false 0.715
    Checking core v0.0.0 (/checkout/library/core)
[RUSTC-TIMING] build_script_build test:false 0.313
---
   |
35 | extern crate rustc_abi;
   | ^^^^^^^^^^^^^^^^^^^^^^^ can't find crate
   |
   = help: maybe you need to install the missing components with: `rustup component add rust-src rustc-dev llvm-tools-preview`

error[E0463]: can't find crate for `rustc_apfloat`
  --> compiler/rustc_codegen_gcc/src/lib.rs:36:1
   |
36 | extern crate rustc_apfloat;
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ can't find crate
   |
   = help: maybe you need to install the missing components with: `rustup component add rust-src rustc-dev llvm-tools-preview`

error[E0463]: can't find crate for `rustc_ast`
  --> compiler/rustc_codegen_gcc/src/lib.rs:37:1
   |
37 | extern crate rustc_ast;
   | ^^^^^^^^^^^^^^^^^^^^^^^ can't find crate
   |
   = help: maybe you need to install the missing components with: `rustup component add rust-src rustc-dev llvm-tools-preview`

error[E0463]: can't find crate for `rustc_attr_data_structures`
  --> compiler/rustc_codegen_gcc/src/lib.rs:38:1
   |
38 | extern crate rustc_attr_data_structures;
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ can't find crate
   |
   = help: maybe you need to install the missing components with: `rustup component add rust-src rustc-dev llvm-tools-preview`

error[E0463]: can't find crate for `rustc_codegen_ssa`
  --> compiler/rustc_codegen_gcc/src/lib.rs:39:1
   |
39 | extern crate rustc_codegen_ssa;
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ can't find crate
   |
   = help: maybe you need to install the missing components with: `rustup component add rust-src rustc-dev llvm-tools-preview`

error[E0463]: can't find crate for `rustc_data_structures`
  --> compiler/rustc_codegen_gcc/src/lib.rs:40:1
   |
40 | extern crate rustc_data_structures;
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ can't find crate
   |
   = help: maybe you need to install the missing components with: `rustup component add rust-src rustc-dev llvm-tools-preview`

error[E0463]: can't find crate for `rustc_errors`
  --> compiler/rustc_codegen_gcc/src/lib.rs:41:1
   |
41 | extern crate rustc_errors;
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^ can't find crate
   |
   = help: maybe you need to install the missing components with: `rustup component add rust-src rustc-dev llvm-tools-preview`

error[E0463]: can't find crate for `rustc_fluent_macro`
  --> compiler/rustc_codegen_gcc/src/lib.rs:42:1
   |
42 | extern crate rustc_fluent_macro;
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ can't find crate
   |
   = help: maybe you need to install the missing components with: `rustup component add rust-src rustc-dev llvm-tools-preview`

error[E0463]: can't find crate for `rustc_fs_util`
  --> compiler/rustc_codegen_gcc/src/lib.rs:43:1
   |
43 | extern crate rustc_fs_util;
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ can't find crate
   |
   = help: maybe you need to install the missing components with: `rustup component add rust-src rustc-dev llvm-tools-preview`

error[E0463]: can't find crate for `rustc_hir`
  --> compiler/rustc_codegen_gcc/src/lib.rs:44:1
   |
44 | extern crate rustc_hir;
   | ^^^^^^^^^^^^^^^^^^^^^^^ can't find crate
   |
   = help: maybe you need to install the missing components with: `rustup component add rust-src rustc-dev llvm-tools-preview`

error[E0463]: can't find crate for `rustc_index`
  --> compiler/rustc_codegen_gcc/src/lib.rs:45:1
   |
45 | extern crate rustc_index;
   | ^^^^^^^^^^^^^^^^^^^^^^^^^ can't find crate
   |
   = help: maybe you need to install the missing components with: `rustup component add rust-src rustc-dev llvm-tools-preview`

error[E0463]: can't find crate for `rustc_interface`
  --> compiler/rustc_codegen_gcc/src/lib.rs:47:1
   |
47 | extern crate rustc_interface;
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ can't find crate
   |
   = help: maybe you need to install the missing components with: `rustup component add rust-src rustc-dev llvm-tools-preview`

error[E0463]: can't find crate for `rustc_macros`
  --> compiler/rustc_codegen_gcc/src/lib.rs:48:1
   |
48 | extern crate rustc_macros;
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^ can't find crate
   |
   = help: maybe you need to install the missing components with: `rustup component add rust-src rustc-dev llvm-tools-preview`

error[E0463]: can't find crate for `rustc_middle`
  --> compiler/rustc_codegen_gcc/src/lib.rs:49:1
   |
49 | extern crate rustc_middle;
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^ can't find crate
   |
   = help: maybe you need to install the missing components with: `rustup component add rust-src rustc-dev llvm-tools-preview`

error[E0463]: can't find crate for `rustc_session`
  --> compiler/rustc_codegen_gcc/src/lib.rs:50:1
   |
50 | extern crate rustc_session;
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ can't find crate
   |
   = help: maybe you need to install the missing components with: `rustup component add rust-src rustc-dev llvm-tools-preview`

error[E0463]: can't find crate for `rustc_span`
  --> compiler/rustc_codegen_gcc/src/lib.rs:51:1
   |
51 | extern crate rustc_span;
   | ^^^^^^^^^^^^^^^^^^^^^^^^ can't find crate
   |
   = help: maybe you need to install the missing components with: `rustup component add rust-src rustc-dev llvm-tools-preview`

error[E0463]: can't find crate for `rustc_symbol_mangling`
  --> compiler/rustc_codegen_gcc/src/lib.rs:52:1
   |
52 | extern crate rustc_symbol_mangling;
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ can't find crate
   |
   = help: maybe you need to install the missing components with: `rustup component add rust-src rustc-dev llvm-tools-preview`

error[E0463]: can't find crate for `rustc_target`
  --> compiler/rustc_codegen_gcc/src/lib.rs:53:1
   |
53 | extern crate rustc_target;
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^ can't find crate
   |
   = help: maybe you need to install the missing components with: `rustup component add rust-src rustc-dev llvm-tools-preview`

error[E0463]: can't find crate for `rustc_driver`
  --> compiler/rustc_codegen_gcc/src/lib.rs:57:1
   |
57 | extern crate rustc_driver;
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^ can't find crate
   |
   = help: maybe you need to install the missing components with: `rustup component add rust-src rustc-dev llvm-tools-preview`

error[E0432]: unresolved imports `smallvec::SmallVec`, `Integer::*`
  --> compiler/rustc_codegen_gcc/src/gcc_util.rs:5:16
   |
5  | use smallvec::{SmallVec, smallvec};
   |                ^^^^^^^^
   |
  ::: compiler/rustc_codegen_gcc/src/type_of.rs:24:13
   |
24 |         use Integer::*;
   |             ^^^^^^^^^^

error: cannot find macro `info` in this scope
  --> compiler/rustc_codegen_gcc/src/back/lto.rs:98:5
   |
98 |     info!("{} symbols to preserve in this crate", symbols_below_threshold.len());
   |     ^^^^

error: cannot find macro `info` in this scope
   --> compiler/rustc_codegen_gcc/src/back/lto.rs:147:17
    |
147 |                 info!("adding bitcode from {}", name);
    |                 ^^^^

error: cannot find macro `info` in this scope
   --> compiler/rustc_codegen_gcc/src/back/lto.rs:206:5
    |
206 |     info!("going for a fat lto");
    |     ^^^^

error: cannot find macro `info` in this scope
   --> compiler/rustc_codegen_gcc/src/back/lto.rs:220:9
    |
220 |         info!("pushing cached module {:?}", wp.cgu_name);
    |         ^^^^

error: cannot find macro `info` in this scope
   --> compiler/rustc_codegen_gcc/src/back/lto.rs:227:17
    |
227 |                 info!("pushing serialized module {:?}", name);
    |                 ^^^^

error: cannot find macro `info` in this scope
   --> compiler/rustc_codegen_gcc/src/back/lto.rs:274:9
    |
274 |         info!("using {:?} as a base module", module.name);
    |         ^^^^

error: cannot find macro `info` in this scope
   --> compiler/rustc_codegen_gcc/src/back/lto.rs:303:13
    |
303 |             info!("linking {:?}", name);
    |             ^^^^

error: cannot find macro `info` in this scope
   --> compiler/rustc_codegen_gcc/src/back/lto.rs:432:5
    |
432 |     info!("going for that thin, thin LTO");
    |     ^^^^

error: cannot find macro `info` in this scope
   --> compiler/rustc_codegen_gcc/src/back/lto.rs:443:9
    |
443 |         info!("local module: {} - {}", i, name);
    |         ^^^^

error: cannot find macro `info` in this scope
   --> compiler/rustc_codegen_gcc/src/back/lto.rs:476:9
    |
476 |         info!("upstream or cached module {:?}", name);
    |         ^^^^

error: cannot find macro `info` in this scope
   --> compiler/rustc_codegen_gcc/src/back/lto.rs:522:5
    |
522 |     info!("thin LTO data created");
    |     ^^^^

error: cannot find macro `info` in this scope
   --> compiler/rustc_codegen_gcc/src/back/lto.rs:556:5
    |
556 |     info!("checking which modules can be-reused and which have to be re-optimized.");
    |     ^^^^

error: cannot find macro `info` in this scope
   --> compiler/rustc_codegen_gcc/src/back/lto.rs:575:9
    |
575 |         info!(" - {}: re-compiled", module_name);
    |         ^^^^

error: cannot find macro `debug` in this scope
   --> compiler/rustc_codegen_gcc/src/back/write.rs:235:17
    |
235 |                 debug!("copying bitcode {:?} to obj {:?}", bc_out, obj_out);
    |                 ^^^^^

error: cannot find macro `debug` in this scope
   --> compiler/rustc_codegen_gcc/src/back/write.rs:241:21
    |
241 |                     debug!("removing_bitcode {:?}", bc_out);
    |                     ^^^^^

error: cannot find macro `trace` in this scope
   --> compiler/rustc_codegen_gcc/src/consts.rs:211:13
    |
---

error: cannot find attribute `primary_span` in this scope
 --> compiler/rustc_codegen_gcc/src/errors.rs:7:7
  |
7 |     #[primary_span]
  |       ^^^^^^^^^^^^

error: cannot find attribute `diag` in this scope
  --> compiler/rustc_codegen_gcc/src/errors.rs:12:3
   |
---

error: cannot find attribute `diag` in this scope
  --> compiler/rustc_codegen_gcc/src/errors.rs:27:3
   |
27 | #[diag(codegen_gcc_lto_dylib)]
   |   ^^^^

error: cannot find attribute `diag` in this scope
  --> compiler/rustc_codegen_gcc/src/errors.rs:31:3
   |
31 | #[diag(codegen_gcc_lto_bitcode_from_rlib)]
   |   ^^^^

error[E0412]: cannot find type `InlineAsmRegOrRegClass` in this scope
   --> compiler/rustc_codegen_gcc/src/asm.rs:616:33
    |
616 | fn reg_to_gcc(reg_or_reg_class: InlineAsmRegOrRegClass) -> ConstraintOrRegister {
    |                                 ^^^^^^^^^^^^^^^^^^^^^^ not found in this scope

error[E0412]: cannot find type `InlineAsmReg` in this scope
   --> compiler/rustc_codegen_gcc/src/asm.rs:627:29
    |
627 | fn explicit_reg_to_gcc(reg: InlineAsmReg) -> &'static str {
    |                             ^^^^^^^^^^^^ not found in this scope

error[E0412]: cannot find type `InlineAsmRegClass` in this scope
   --> compiler/rustc_codegen_gcc/src/asm.rs:653:32
    |
653 | fn reg_class_to_gcc(reg_class: InlineAsmRegClass) -> &'static str {
    |                                ^^^^^^^^^^^^^^^^^ not found in this scope

error[E0412]: cannot find type `InlineAsmRegClass` in this scope
   --> compiler/rustc_codegen_gcc/src/asm.rs:742:67
    |
742 | fn dummy_output_type<'gcc, 'tcx>(cx: &CodegenCx<'gcc, 'tcx>, reg: InlineAsmRegClass) -> Type<'gcc> {
    |                                                                   ^^^^^^^^^^^^^^^^^ not found in this scope

error[E0412]: cannot find type `InlineAsmArch` in this scope
   --> compiler/rustc_codegen_gcc/src/asm.rs:918:11
    |
---

error[E0531]: cannot find tuple struct or tuple variant `Scalar` in this scope
   --> compiler/rustc_codegen_gcc/src/intrinsic/mod.rs:538:21
    |
538 |                     Scalar(_) | ScalarPair(_, _) => true,
    |                     ^^^^^^ not found in this scope

error[E0531]: cannot find tuple struct or tuple variant `ScalarPair` in this scope
   --> compiler/rustc_codegen_gcc/src/intrinsic/mod.rs:538:33
    |
538 |                     Scalar(_) | ScalarPair(_, _) => true,
    |                                 ^^^^^^^^^^ not found in this scope

error[E0422]: cannot find struct, variant or union type `SimdVector` in this scope
   --> compiler/rustc_codegen_gcc/src/intrinsic/mod.rs:539:21
    |
---

error[E0531]: cannot find tuple struct or tuple variant `Int` in this scope
   --> compiler/rustc_codegen_gcc/src/type_of.rs:282:13
    |
282 |             Int(i, true) => cx.type_from_integer(i),
    |             ^^^ not found in this scope

error[E0531]: cannot find tuple struct or tuple variant `Int` in this scope
   --> compiler/rustc_codegen_gcc/src/type_of.rs:283:13
    |
283 |             Int(i, false) => cx.type_from_unsigned_integer(i),
    |             ^^^ not found in this scope

error[E0531]: cannot find tuple struct or tuple variant `Float` in this scope
   --> compiler/rustc_codegen_gcc/src/type_of.rs:284:13
    |
284 |             Float(f) => cx.type_from_float(f),
    |             ^^^^^ not found in this scope

error[E0531]: cannot find tuple struct or tuple variant `Pointer` in this scope
   --> compiler/rustc_codegen_gcc/src/type_of.rs:285:13
    |
---

error[E0433]: failed to resolve: use of undeclared type `InlineAsmArch`
   --> compiler/rustc_codegen_gcc/src/asm.rs:129:41
    |
129 |         let is_x86 = matches!(asm_arch, InlineAsmArch::X86 | InlineAsmArch::X86_64);
    |                                         ^^^^^^^^^^^^^ use of undeclared type `InlineAsmArch`

error[E0433]: failed to resolve: use of undeclared type `InlineAsmArch`
   --> compiler/rustc_codegen_gcc/src/asm.rs:129:62
    |
129 |         let is_x86 = matches!(asm_arch, InlineAsmArch::X86 | InlineAsmArch::X86_64);
    |                                                              ^^^^^^^^^^^^^ use of undeclared type `InlineAsmArch`

error[E0433]: failed to resolve: use of undeclared type `InlineAsmRegOrRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:618:9
    |
618 |         InlineAsmRegOrRegClass::Reg(reg) => {
    |         ^^^^^^^^^^^^^^^^^^^^^^ use of undeclared type `InlineAsmRegOrRegClass`

error[E0433]: failed to resolve: use of undeclared type `InlineAsmRegOrRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:621:9
    |
621 |         InlineAsmRegOrRegClass::RegClass(reg_class) => {
    |         ^^^^^^^^^^^^^^^^^^^^^^ use of undeclared type `InlineAsmRegOrRegClass`

error[E0433]: failed to resolve: use of undeclared type `InlineAsmReg`
   --> compiler/rustc_codegen_gcc/src/asm.rs:630:9
    |
630 |         InlineAsmReg::X86(reg) => {
    |         ^^^^^^^^^^^^ use of undeclared type `InlineAsmReg`

error[E0433]: failed to resolve: use of undeclared type `X86InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:633:17
    |
633 |                 X86InlineAsmRegClass::reg_byte => {
    |                 ^^^^^^^^^^^^^^^^^^^^ use of undeclared type `X86InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `InlineAsmReg`
   --> compiler/rustc_codegen_gcc/src/asm.rs:646:9
    |
646 |         InlineAsmReg::Arm(reg) => reg.name(),
    |         ^^^^^^^^^^^^ use of undeclared type `InlineAsmReg`

error[E0433]: failed to resolve: use of undeclared type `InlineAsmReg`
   --> compiler/rustc_codegen_gcc/src/asm.rs:647:9
    |
647 |         InlineAsmReg::AArch64(reg) => reg.name(),
    |         ^^^^^^^^^^^^ use of undeclared type `InlineAsmReg`

error[E0433]: failed to resolve: use of undeclared type `InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:655:9
    |
655 |         InlineAsmRegClass::AArch64(AArch64InlineAsmRegClass::reg) => "r",
    |         ^^^^^^^^^^^^^^^^^ use of undeclared type `InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `AArch64InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:655:36
    |
655 |         InlineAsmRegClass::AArch64(AArch64InlineAsmRegClass::reg) => "r",
    |                                    ^^^^^^^^^^^^^^^^^^^^^^^^ use of undeclared type `AArch64InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:656:9
    |
656 |         InlineAsmRegClass::AArch64(AArch64InlineAsmRegClass::vreg) => "w",
    |         ^^^^^^^^^^^^^^^^^ use of undeclared type `InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `AArch64InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:656:36
    |
656 |         InlineAsmRegClass::AArch64(AArch64InlineAsmRegClass::vreg) => "w",
    |                                    ^^^^^^^^^^^^^^^^^^^^^^^^ use of undeclared type `AArch64InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:657:9
    |
657 |         InlineAsmRegClass::AArch64(AArch64InlineAsmRegClass::vreg_low16) => "x",
    |         ^^^^^^^^^^^^^^^^^ use of undeclared type `InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `AArch64InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:657:36
    |
657 |         InlineAsmRegClass::AArch64(AArch64InlineAsmRegClass::vreg_low16) => "x",
    |                                    ^^^^^^^^^^^^^^^^^^^^^^^^ use of undeclared type `AArch64InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:658:9
    |
658 |         InlineAsmRegClass::AArch64(AArch64InlineAsmRegClass::preg) => {
    |         ^^^^^^^^^^^^^^^^^ use of undeclared type `InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `AArch64InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:658:36
    |
658 |         InlineAsmRegClass::AArch64(AArch64InlineAsmRegClass::preg) => {
    |                                    ^^^^^^^^^^^^^^^^^^^^^^^^ use of undeclared type `AArch64InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:661:9
    |
661 |         InlineAsmRegClass::Arm(ArmInlineAsmRegClass::reg) => "r",
    |         ^^^^^^^^^^^^^^^^^ use of undeclared type `InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `ArmInlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:661:32
    |
661 |         InlineAsmRegClass::Arm(ArmInlineAsmRegClass::reg) => "r",
    |                                ^^^^^^^^^^^^^^^^^^^^ use of undeclared type `ArmInlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:662:9
    |
662 |         InlineAsmRegClass::Arm(ArmInlineAsmRegClass::sreg)
    |         ^^^^^^^^^^^^^^^^^ use of undeclared type `InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `ArmInlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:662:32
    |
662 |         InlineAsmRegClass::Arm(ArmInlineAsmRegClass::sreg)
    |                                ^^^^^^^^^^^^^^^^^^^^ use of undeclared type `ArmInlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:663:11
    |
663 |         | InlineAsmRegClass::Arm(ArmInlineAsmRegClass::dreg_low16)
    |           ^^^^^^^^^^^^^^^^^ use of undeclared type `InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `ArmInlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:663:34
    |
663 |         | InlineAsmRegClass::Arm(ArmInlineAsmRegClass::dreg_low16)
    |                                  ^^^^^^^^^^^^^^^^^^^^ use of undeclared type `ArmInlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:664:11
    |
664 |         | InlineAsmRegClass::Arm(ArmInlineAsmRegClass::qreg_low8)
    |           ^^^^^^^^^^^^^^^^^ use of undeclared type `InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `ArmInlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:664:34
    |
664 |         | InlineAsmRegClass::Arm(ArmInlineAsmRegClass::qreg_low8)
    |                                  ^^^^^^^^^^^^^^^^^^^^ use of undeclared type `ArmInlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:665:11
    |
665 |         | InlineAsmRegClass::Arm(ArmInlineAsmRegClass::sreg_low16)
    |           ^^^^^^^^^^^^^^^^^ use of undeclared type `InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `ArmInlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:665:34
    |
665 |         | InlineAsmRegClass::Arm(ArmInlineAsmRegClass::sreg_low16)
    |                                  ^^^^^^^^^^^^^^^^^^^^ use of undeclared type `ArmInlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:666:11
    |
666 |         | InlineAsmRegClass::Arm(ArmInlineAsmRegClass::dreg_low8)
    |           ^^^^^^^^^^^^^^^^^ use of undeclared type `InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `ArmInlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:666:34
    |
666 |         | InlineAsmRegClass::Arm(ArmInlineAsmRegClass::dreg_low8)
    |                                  ^^^^^^^^^^^^^^^^^^^^ use of undeclared type `ArmInlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:667:11
    |
667 |         | InlineAsmRegClass::Arm(ArmInlineAsmRegClass::qreg_low4)
    |           ^^^^^^^^^^^^^^^^^ use of undeclared type `InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `ArmInlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:667:34
    |
667 |         | InlineAsmRegClass::Arm(ArmInlineAsmRegClass::qreg_low4)
    |                                  ^^^^^^^^^^^^^^^^^^^^ use of undeclared type `ArmInlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:668:11
    |
668 |         | InlineAsmRegClass::Arm(ArmInlineAsmRegClass::dreg)
    |           ^^^^^^^^^^^^^^^^^ use of undeclared type `InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `ArmInlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:668:34
    |
668 |         | InlineAsmRegClass::Arm(ArmInlineAsmRegClass::dreg)
    |                                  ^^^^^^^^^^^^^^^^^^^^ use of undeclared type `ArmInlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:669:11
    |
669 |         | InlineAsmRegClass::Arm(ArmInlineAsmRegClass::qreg) => "t",
    |           ^^^^^^^^^^^^^^^^^ use of undeclared type `InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `ArmInlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:669:34
    |
669 |         | InlineAsmRegClass::Arm(ArmInlineAsmRegClass::qreg) => "t",
    |                                  ^^^^^^^^^^^^^^^^^^^^ use of undeclared type `ArmInlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:670:9
    |
670 |         InlineAsmRegClass::Avr(AvrInlineAsmRegClass::reg) => "r",
    |         ^^^^^^^^^^^^^^^^^ use of undeclared type `InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `AvrInlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:670:32
    |
670 |         InlineAsmRegClass::Avr(AvrInlineAsmRegClass::reg) => "r",
    |                                ^^^^^^^^^^^^^^^^^^^^ use of undeclared type `AvrInlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:671:9
    |
671 |         InlineAsmRegClass::Avr(AvrInlineAsmRegClass::reg_upper) => "d",
    |         ^^^^^^^^^^^^^^^^^ use of undeclared type `InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `AvrInlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:671:32
    |
671 |         InlineAsmRegClass::Avr(AvrInlineAsmRegClass::reg_upper) => "d",
    |                                ^^^^^^^^^^^^^^^^^^^^ use of undeclared type `AvrInlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:672:9
    |
672 |         InlineAsmRegClass::Avr(AvrInlineAsmRegClass::reg_pair) => "r",
    |         ^^^^^^^^^^^^^^^^^ use of undeclared type `InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `AvrInlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:672:32
    |
672 |         InlineAsmRegClass::Avr(AvrInlineAsmRegClass::reg_pair) => "r",
    |                                ^^^^^^^^^^^^^^^^^^^^ use of undeclared type `AvrInlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:673:9
    |
673 |         InlineAsmRegClass::Avr(AvrInlineAsmRegClass::reg_iw) => "w",
    |         ^^^^^^^^^^^^^^^^^ use of undeclared type `InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `AvrInlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:673:32
    |
673 |         InlineAsmRegClass::Avr(AvrInlineAsmRegClass::reg_iw) => "w",
    |                                ^^^^^^^^^^^^^^^^^^^^ use of undeclared type `AvrInlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:674:9
    |
674 |         InlineAsmRegClass::Avr(AvrInlineAsmRegClass::reg_ptr) => "e",
    |         ^^^^^^^^^^^^^^^^^ use of undeclared type `InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `AvrInlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:674:32
    |
674 |         InlineAsmRegClass::Avr(AvrInlineAsmRegClass::reg_ptr) => "e",
    |                                ^^^^^^^^^^^^^^^^^^^^ use of undeclared type `AvrInlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:675:9
    |
675 |         InlineAsmRegClass::Bpf(BpfInlineAsmRegClass::reg) => "r",
    |         ^^^^^^^^^^^^^^^^^ use of undeclared type `InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `BpfInlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:675:32
    |
675 |         InlineAsmRegClass::Bpf(BpfInlineAsmRegClass::reg) => "r",
    |                                ^^^^^^^^^^^^^^^^^^^^ use of undeclared type `BpfInlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:676:9
    |
676 |         InlineAsmRegClass::Bpf(BpfInlineAsmRegClass::wreg) => "w",
    |         ^^^^^^^^^^^^^^^^^ use of undeclared type `InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `BpfInlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:676:32
    |
676 |         InlineAsmRegClass::Bpf(BpfInlineAsmRegClass::wreg) => "w",
    |                                ^^^^^^^^^^^^^^^^^^^^ use of undeclared type `BpfInlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:677:9
    |
677 |         InlineAsmRegClass::Hexagon(HexagonInlineAsmRegClass::reg) => "r",
    |         ^^^^^^^^^^^^^^^^^ use of undeclared type `InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `HexagonInlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:677:36
    |
677 |         InlineAsmRegClass::Hexagon(HexagonInlineAsmRegClass::reg) => "r",
    |                                    ^^^^^^^^^^^^^^^^^^^^^^^^ use of undeclared type `HexagonInlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:678:9
    |
678 |         InlineAsmRegClass::Hexagon(HexagonInlineAsmRegClass::preg) => {
    |         ^^^^^^^^^^^^^^^^^ use of undeclared type `InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `HexagonInlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:678:36
    |
678 |         InlineAsmRegClass::Hexagon(HexagonInlineAsmRegClass::preg) => {
    |                                    ^^^^^^^^^^^^^^^^^^^^^^^^ use of undeclared type `HexagonInlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:681:9
    |
681 |         InlineAsmRegClass::LoongArch(LoongArchInlineAsmRegClass::reg) => "r",
    |         ^^^^^^^^^^^^^^^^^ use of undeclared type `InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `LoongArchInlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:681:38
    |
681 |         InlineAsmRegClass::LoongArch(LoongArchInlineAsmRegClass::reg) => "r",
    |                                      ^^^^^^^^^^^^^^^^^^^^^^^^^^ use of undeclared type `LoongArchInlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:682:9
    |
682 |         InlineAsmRegClass::LoongArch(LoongArchInlineAsmRegClass::freg) => "f",
    |         ^^^^^^^^^^^^^^^^^ use of undeclared type `InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `LoongArchInlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:682:38
    |
682 |         InlineAsmRegClass::LoongArch(LoongArchInlineAsmRegClass::freg) => "f",
    |                                      ^^^^^^^^^^^^^^^^^^^^^^^^^^ use of undeclared type `LoongArchInlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:683:9
    |
683 |         InlineAsmRegClass::M68k(M68kInlineAsmRegClass::reg) => "r",
    |         ^^^^^^^^^^^^^^^^^ use of undeclared type `InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `M68kInlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:683:33
    |
683 |         InlineAsmRegClass::M68k(M68kInlineAsmRegClass::reg) => "r",
    |                                 ^^^^^^^^^^^^^^^^^^^^^ use of undeclared type `M68kInlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:684:9
    |
684 |         InlineAsmRegClass::M68k(M68kInlineAsmRegClass::reg_addr) => "a",
    |         ^^^^^^^^^^^^^^^^^ use of undeclared type `InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `M68kInlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:684:33
    |
684 |         InlineAsmRegClass::M68k(M68kInlineAsmRegClass::reg_addr) => "a",
    |                                 ^^^^^^^^^^^^^^^^^^^^^ use of undeclared type `M68kInlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:685:9
    |
685 |         InlineAsmRegClass::M68k(M68kInlineAsmRegClass::reg_data) => "d",
    |         ^^^^^^^^^^^^^^^^^ use of undeclared type `InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `M68kInlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:685:33
    |
685 |         InlineAsmRegClass::M68k(M68kInlineAsmRegClass::reg_data) => "d",
    |                                 ^^^^^^^^^^^^^^^^^^^^^ use of undeclared type `M68kInlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:686:9
    |
686 |         InlineAsmRegClass::CSKY(CSKYInlineAsmRegClass::reg) => "r",
    |         ^^^^^^^^^^^^^^^^^ use of undeclared type `InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `CSKYInlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:686:33
    |
686 |         InlineAsmRegClass::CSKY(CSKYInlineAsmRegClass::reg) => "r",
    |                                 ^^^^^^^^^^^^^^^^^^^^^ use of undeclared type `CSKYInlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:687:9
    |
687 |         InlineAsmRegClass::CSKY(CSKYInlineAsmRegClass::freg) => "f",
    |         ^^^^^^^^^^^^^^^^^ use of undeclared type `InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `CSKYInlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:687:33
    |
687 |         InlineAsmRegClass::CSKY(CSKYInlineAsmRegClass::freg) => "f",
    |                                 ^^^^^^^^^^^^^^^^^^^^^ use of undeclared type `CSKYInlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:688:9
    |
688 |         InlineAsmRegClass::Mips(MipsInlineAsmRegClass::reg) => "d", // more specific than "r"
    |         ^^^^^^^^^^^^^^^^^ use of undeclared type `InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `MipsInlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:688:33
    |
688 |         InlineAsmRegClass::Mips(MipsInlineAsmRegClass::reg) => "d", // more specific than "r"
    |                                 ^^^^^^^^^^^^^^^^^^^^^ use of undeclared type `MipsInlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:689:9
    |
689 |         InlineAsmRegClass::Mips(MipsInlineAsmRegClass::freg) => "f",
    |         ^^^^^^^^^^^^^^^^^ use of undeclared type `InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `MipsInlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:689:33
    |
689 |         InlineAsmRegClass::Mips(MipsInlineAsmRegClass::freg) => "f",
    |                                 ^^^^^^^^^^^^^^^^^^^^^ use of undeclared type `MipsInlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:690:9
    |
690 |         InlineAsmRegClass::Msp430(Msp430InlineAsmRegClass::reg) => "r",
    |         ^^^^^^^^^^^^^^^^^ use of undeclared type `InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `Msp430InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:690:35
    |
690 |         InlineAsmRegClass::Msp430(Msp430InlineAsmRegClass::reg) => "r",
    |                                   ^^^^^^^^^^^^^^^^^^^^^^^ use of undeclared type `Msp430InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:693:9
    |
693 |         InlineAsmRegClass::Nvptx(NvptxInlineAsmRegClass::reg16) => "h",
    |         ^^^^^^^^^^^^^^^^^ use of undeclared type `InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `NvptxInlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:693:34
    |
693 |         InlineAsmRegClass::Nvptx(NvptxInlineAsmRegClass::reg16) => "h",
    |                                  ^^^^^^^^^^^^^^^^^^^^^^ use of undeclared type `NvptxInlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:694:9
    |
694 |         InlineAsmRegClass::Nvptx(NvptxInlineAsmRegClass::reg32) => "r",
    |         ^^^^^^^^^^^^^^^^^ use of undeclared type `InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `NvptxInlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:694:34
    |
694 |         InlineAsmRegClass::Nvptx(NvptxInlineAsmRegClass::reg32) => "r",
    |                                  ^^^^^^^^^^^^^^^^^^^^^^ use of undeclared type `NvptxInlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:695:9
    |
695 |         InlineAsmRegClass::Nvptx(NvptxInlineAsmRegClass::reg64) => "l",
    |         ^^^^^^^^^^^^^^^^^ use of undeclared type `InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `NvptxInlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:695:34
    |
695 |         InlineAsmRegClass::Nvptx(NvptxInlineAsmRegClass::reg64) => "l",
    |                                  ^^^^^^^^^^^^^^^^^^^^^^ use of undeclared type `NvptxInlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:697:9
    |
697 |         InlineAsmRegClass::PowerPC(PowerPCInlineAsmRegClass::reg) => "r",
    |         ^^^^^^^^^^^^^^^^^ use of undeclared type `InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `PowerPCInlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:697:36
    |
697 |         InlineAsmRegClass::PowerPC(PowerPCInlineAsmRegClass::reg) => "r",
    |                                    ^^^^^^^^^^^^^^^^^^^^^^^^ use of undeclared type `PowerPCInlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:698:9
    |
698 |         InlineAsmRegClass::PowerPC(PowerPCInlineAsmRegClass::reg_nonzero) => "b",
    |         ^^^^^^^^^^^^^^^^^ use of undeclared type `InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `PowerPCInlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:698:36
    |
698 |         InlineAsmRegClass::PowerPC(PowerPCInlineAsmRegClass::reg_nonzero) => "b",
    |                                    ^^^^^^^^^^^^^^^^^^^^^^^^ use of undeclared type `PowerPCInlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:699:9
    |
699 |         InlineAsmRegClass::PowerPC(PowerPCInlineAsmRegClass::freg) => "f",
    |         ^^^^^^^^^^^^^^^^^ use of undeclared type `InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `PowerPCInlineAsmRegClass`
---

error[E0433]: failed to resolve: use of undeclared type `InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:953:9
    |
953 |         InlineAsmRegClass::RiscV(RiscVInlineAsmRegClass::reg)
    |         ^^^^^^^^^^^^^^^^^ use of undeclared type `InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `RiscVInlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:953:34
    |
953 |         InlineAsmRegClass::RiscV(RiscVInlineAsmRegClass::reg)
    |                                  ^^^^^^^^^^^^^^^^^^^^^^ use of undeclared type `RiscVInlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:954:11
    |
954 |         | InlineAsmRegClass::RiscV(RiscVInlineAsmRegClass::freg) => None,
    |           ^^^^^^^^^^^^^^^^^ use of undeclared type `InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `RiscVInlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:954:36
    |
954 |         | InlineAsmRegClass::RiscV(RiscVInlineAsmRegClass::freg) => None,
    |                                    ^^^^^^^^^^^^^^^^^^^^^^ use of undeclared type `RiscVInlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:955:9
    |
955 |         InlineAsmRegClass::RiscV(RiscVInlineAsmRegClass::vreg) => {
    |         ^^^^^^^^^^^^^^^^^ use of undeclared type `InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `RiscVInlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:955:34
    |
955 |         InlineAsmRegClass::RiscV(RiscVInlineAsmRegClass::vreg) => {
    |                                  ^^^^^^^^^^^^^^^^^^^^^^ use of undeclared type `RiscVInlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:958:9
    |
958 |         InlineAsmRegClass::X86(X86InlineAsmRegClass::reg)
    |         ^^^^^^^^^^^^^^^^^ use of undeclared type `InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `X86InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:958:32
    |
958 |         InlineAsmRegClass::X86(X86InlineAsmRegClass::reg)
    |                                ^^^^^^^^^^^^^^^^^^^^ use of undeclared type `X86InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:959:11
    |
959 |         | InlineAsmRegClass::X86(X86InlineAsmRegClass::reg_abcd) => match modifier {
    |           ^^^^^^^^^^^^^^^^^ use of undeclared type `InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `X86InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:959:34
    |
959 |         | InlineAsmRegClass::X86(X86InlineAsmRegClass::reg_abcd) => match modifier {
    |                                  ^^^^^^^^^^^^^^^^^^^^ use of undeclared type `X86InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `InlineAsmArch`
   --> compiler/rustc_codegen_gcc/src/asm.rs:961:28
    |
961 |                 if arch == InlineAsmArch::X86_64 {
    |                            ^^^^^^^^^^^^^ use of undeclared type `InlineAsmArch`

error[E0433]: failed to resolve: use of undeclared type `InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:974:9
    |
974 |         InlineAsmRegClass::X86(X86InlineAsmRegClass::reg_byte) => None,
    |         ^^^^^^^^^^^^^^^^^ use of undeclared type `InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `X86InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:974:32
    |
974 |         InlineAsmRegClass::X86(X86InlineAsmRegClass::reg_byte) => None,
    |                                ^^^^^^^^^^^^^^^^^^^^ use of undeclared type `X86InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:975:9
    |
975 |         InlineAsmRegClass::X86(reg @ X86InlineAsmRegClass::xmm_reg)
    |         ^^^^^^^^^^^^^^^^^ use of undeclared type `InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `X86InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:975:38
    |
975 |         InlineAsmRegClass::X86(reg @ X86InlineAsmRegClass::xmm_reg)
    |                                      ^^^^^^^^^^^^^^^^^^^^ use of undeclared type `X86InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:976:11
    |
976 |         | InlineAsmRegClass::X86(reg @ X86InlineAsmRegClass::ymm_reg)
    |           ^^^^^^^^^^^^^^^^^ use of undeclared type `InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `X86InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:976:40
    |
976 |         | InlineAsmRegClass::X86(reg @ X86InlineAsmRegClass::ymm_reg)
    |                                        ^^^^^^^^^^^^^^^^^^^^ use of undeclared type `X86InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:977:11
    |
977 |         | InlineAsmRegClass::X86(reg @ X86InlineAsmRegClass::zmm_reg) => match (reg, modifier) {
    |           ^^^^^^^^^^^^^^^^^ use of undeclared type `InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `X86InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:977:40
    |
977 |         | InlineAsmRegClass::X86(reg @ X86InlineAsmRegClass::zmm_reg) => match (reg, modifier) {
    |                                        ^^^^^^^^^^^^^^^^^^^^ use of undeclared type `X86InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `X86InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:978:14
    |
978 |             (X86InlineAsmRegClass::xmm_reg, None) => Some('x'),
    |              ^^^^^^^^^^^^^^^^^^^^ use of undeclared type `X86InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `X86InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:979:14
    |
979 |             (X86InlineAsmRegClass::ymm_reg, None) => Some('t'),
    |              ^^^^^^^^^^^^^^^^^^^^ use of undeclared type `X86InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `X86InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:980:14
    |
980 |             (X86InlineAsmRegClass::zmm_reg, None) => Some('g'),
    |              ^^^^^^^^^^^^^^^^^^^^ use of undeclared type `X86InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:986:9
    |
986 |         InlineAsmRegClass::X86(X86InlineAsmRegClass::kreg) => None,
    |         ^^^^^^^^^^^^^^^^^ use of undeclared type `InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `X86InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:986:32
    |
986 |         InlineAsmRegClass::X86(X86InlineAsmRegClass::kreg) => None,
    |                                ^^^^^^^^^^^^^^^^^^^^ use of undeclared type `X86InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:987:9
    |
987 |         InlineAsmRegClass::X86(
    |         ^^^^^^^^^^^^^^^^^ use of undeclared type `InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `X86InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:988:13
    |
988 |             X86InlineAsmRegClass::x87_reg
    |             ^^^^^^^^^^^^^^^^^^^^ use of undeclared type `X86InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `X86InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:989:15
    |
989 |             | X86InlineAsmRegClass::mmx_reg
    |               ^^^^^^^^^^^^^^^^^^^^ use of undeclared type `X86InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `X86InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:990:15
    |
990 |             | X86InlineAsmRegClass::kreg0
    |               ^^^^^^^^^^^^^^^^^^^^ use of undeclared type `X86InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `X86InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:991:15
    |
991 |             | X86InlineAsmRegClass::tmm_reg,
---

error[E0433]: failed to resolve: use of undeclared type `InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:997:9
    |
997 |         InlineAsmRegClass::Avr(AvrInlineAsmRegClass::reg_pair)
    |         ^^^^^^^^^^^^^^^^^ use of undeclared type `InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `AvrInlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:997:32
    |
997 |         InlineAsmRegClass::Avr(AvrInlineAsmRegClass::reg_pair)
    |                                ^^^^^^^^^^^^^^^^^^^^ use of undeclared type `AvrInlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:998:11
    |
998 |         | InlineAsmRegClass::Avr(AvrInlineAsmRegClass::reg_iw)
    |           ^^^^^^^^^^^^^^^^^ use of undeclared type `InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `AvrInlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:998:34
    |
998 |         | InlineAsmRegClass::Avr(AvrInlineAsmRegClass::reg_iw)
    |                                  ^^^^^^^^^^^^^^^^^^^^ use of undeclared type `AvrInlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `InlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:999:11
    |
999 |         | InlineAsmRegClass::Avr(AvrInlineAsmRegClass::reg_ptr) => match modifier {
    |           ^^^^^^^^^^^^^^^^^ use of undeclared type `InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `AvrInlineAsmRegClass`
   --> compiler/rustc_codegen_gcc/src/asm.rs:999:34
    |
999 |         | InlineAsmRegClass::Avr(AvrInlineAsmRegClass::reg_ptr) => match modifier {
    |                                  ^^^^^^^^^^^^^^^^^^^^ use of undeclared type `AvrInlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `InlineAsmRegClass`
    --> compiler/rustc_codegen_gcc/src/asm.rs:1004:9
     |
1004 |         InlineAsmRegClass::Avr(_) => None,
---

error[E0433]: failed to resolve: use of undeclared type `InlineAsmRegClass`
    --> compiler/rustc_codegen_gcc/src/asm.rs:1010:9
     |
1010 |         InlineAsmRegClass::SpirV(SpirVInlineAsmRegClass::reg) => {
     |         ^^^^^^^^^^^^^^^^^ use of undeclared type `InlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `SpirVInlineAsmRegClass`
    --> compiler/rustc_codegen_gcc/src/asm.rs:1010:34
     |
1010 |         InlineAsmRegClass::SpirV(SpirVInlineAsmRegClass::reg) => {
     |                                  ^^^^^^^^^^^^^^^^^^^^^^ use of undeclared type `SpirVInlineAsmRegClass`

error[E0433]: failed to resolve: use of undeclared type `InlineAsmRegClass`
    --> compiler/rustc_codegen_gcc/src/asm.rs:1013:9
     |
1013 |         InlineAsmRegClass::Err => unreachable!(),

@bjorn3
Copy link
Member

bjorn3 commented Jul 21, 2025

nit: s/hcekc/check in the PR title

@Kobzol Kobzol changed the title Do not copy .rmeta files into the sysroot of the build compiler during hcekc Do not copy .rmeta files into the sysroot of the build compiler during check Jul 21, 2025
@Kobzol
Copy link
Member Author

Kobzol commented Jul 21, 2025

I will also need to do this for the Clippy steps.

@Kobzol
Copy link
Member Author

Kobzol commented Jul 21, 2025

Uhh, x clippy ci ran clippy using in-tree clippy, not stage 0 clippy. I will have to go through the clippy steps first and make that more compatible with what x check does first.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. T-bootstrap Relevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap)
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants