We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b6c404a + d49b1d1 commit 0c4b4f2Copy full SHA for 0c4b4f2
library/std/src/sys/thread_local/mod.rs
@@ -6,7 +6,11 @@
6
// "static" is for single-threaded platforms where a global static is sufficient.
7
8
cfg_if::cfg_if! {
9
- if #[cfg(any(all(target_family = "wasm", not(target_feature = "atomics")), target_os = "uefi"))] {
+ if #[cfg(any(
10
+ all(target_family = "wasm", not(target_feature = "atomics")),
11
+ target_os = "uefi",
12
+ target_os = "zkvm"
13
+ ))] {
14
#[doc(hidden)]
15
mod static_local;
16
0 commit comments