about summary refs log tree commit diff
path: root/library/std/src/sys/pal/zkvm/mod.rs
diff options
context:
space:
mode:
authorMatthias Krüger <476013+matthiaskrgr@users.noreply.github.com>2025-09-20 17:55:05 +0200
committerGitHub <noreply@github.com>2025-09-20 17:55:05 +0200
commit48c1249bfff63607116e346ffcb0d330737ea9cc (patch)
treeb50cd2f0e536f2886a185151fab7bce05e357332 /library/std/src/sys/pal/zkvm/mod.rs
parentf5725f01820720c41b2764dd1c135d99d7f5f257 (diff)
parentdb4d4eff56a38c7c1096e0cf76ee3bd523bade05 (diff)
downloadrust-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/pal/zkvm/mod.rs')
-rw-r--r--library/std/src/sys/pal/zkvm/mod.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/library/std/src/sys/pal/zkvm/mod.rs b/library/std/src/sys/pal/zkvm/mod.rs
index e1efa240685..9069c8d12fa 100644
--- a/library/std/src/sys/pal/zkvm/mod.rs
+++ b/library/std/src/sys/pal/zkvm/mod.rs
@@ -14,8 +14,6 @@ pub mod abi;
 pub mod os;
 #[path = "../unsupported/pipe.rs"]
 pub mod pipe;
-#[path = "../unsupported/thread.rs"]
-pub mod thread;
 #[path = "../unsupported/time.rs"]
 pub mod time;