diff options
| author | Matthias Krüger <476013+matthiaskrgr@users.noreply.github.com> | 2025-09-20 17:55:05 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-09-20 17:55:05 +0200 |
| commit | 48c1249bfff63607116e346ffcb0d330737ea9cc (patch) | |
| tree | b50cd2f0e536f2886a185151fab7bce05e357332 /library/std/src/sys/env_consts.rs | |
| parent | f5725f01820720c41b2764dd1c135d99d7f5f257 (diff) | |
| parent | db4d4eff56a38c7c1096e0cf76ee3bd523bade05 (diff) | |
| download | rust-48c1249bfff63607116e346ffcb0d330737ea9cc.tar.gz rust-48c1249bfff63607116e346ffcb0d330737ea9cc.zip | |
Rollup merge of #146800 - thaliaarchi:fix-move-pal-thread, r=joboet
Fix unsupported `std::sys::thread` after move
Fixes building std for any platform with an unsupported thread abstraction. This includes {aarch64,armv7,x86_64}-unknown-trusty and riscv32im-risc0-zkvm-elf, which explicitly include the unsupported module, and platforms with no PAL.
Bug fix for rust-lang/rust#145177 (std: move thread into sys).
Also fix the `std` build for xtensa, which I incidentally found while looking for an unsupported platform.
r? ``@joboet``
Diffstat (limited to 'library/std/src/sys/env_consts.rs')
| -rw-r--r-- | library/std/src/sys/env_consts.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/sys/env_consts.rs b/library/std/src/sys/env_consts.rs index 9683fd47cf9..711ba0a5f8a 100644 --- a/library/std/src/sys/env_consts.rs +++ b/library/std/src/sys/env_consts.rs @@ -2,7 +2,7 @@ // Replaces the #[else] gate with #[cfg(not(any(…)))] of all the other gates. // This ensures that they must be mutually exclusive and do not have precedence -// like cfg_if!. +// like cfg_select!. macro cfg_unordered( $(#[cfg($cfg:meta)] $os:item)* #[else] $fallback:item |
