diff options
| author | bors <bors@rust-lang.org> | 2024-10-05 19:32:38 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2024-10-05 19:32:38 +0000 |
| commit | 9096f4fafa2ac2d771f866337b4ee7064cde8575 (patch) | |
| tree | 306347b3a41d8f5d001daf88cb069dabc8c00a6f /src/bootstrap | |
| parent | 2b21f90d5efb8b76f9016dd88cf6f3c04216c33b (diff) | |
| parent | 6a85c32f55fce74987cb600f23d609bda2360efe (diff) | |
Auto merge of #131302 - matthiaskrgr:rollup-56kbpzx, r=matthiaskrgr
Rollup of 5 pull requests
Successful merges:
- #130555 ( Initial support for riscv32{e|em|emc}_unknown_none_elf)
- #131280 (Handle `rustc_interface` cases of `rustc::potential_query_instability` lint)
- #131281 (make Cell unstably const)
- #131285 (clarify semantics of ConstantIndex MIR projection)
- #131299 (fix typo in 'lang item with track_caller' message)
r? `@ghost`
`@rustbot` modify labels: rollup
Diffstat (limited to 'src/bootstrap')
| -rw-r--r-- | src/bootstrap/src/core/sanity.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/bootstrap/src/core/sanity.rs b/src/bootstrap/src/core/sanity.rs index 888ba8e2a3f..11260f87d00 100644 --- a/src/bootstrap/src/core/sanity.rs +++ b/src/bootstrap/src/core/sanity.rs @@ -37,6 +37,9 @@ pub struct Finder { const STAGE0_MISSING_TARGETS: &[&str] = &[ // just a dummy comment so the list doesn't get onelined "armv7-rtems-eabihf", + "riscv32e-unknown-none-elf", + "riscv32em-unknown-none-elf", + "riscv32emc-unknown-none-elf", ]; /// Minimum version threshold for libstdc++ required when using prebuilt LLVM |
