We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54ac017 commit 88b013fCopy full SHA for 88b013f
library/std/src/sys/thread_local/mod.rs
@@ -7,7 +7,11 @@
7
// "static" is for single-threaded platforms where a global static is sufficient.
8
9
cfg_if::cfg_if! {
10
- if #[cfg(any(all(target_family = "wasm", not(target_feature = "atomics")), target_os = "uefi"))] {
+ if #[cfg(any(
11
+ all(target_family = "wasm", not(target_feature = "atomics")),
12
+ target_os = "uefi",
13
+ target_os = "zkvm"
14
+ ))] {
15
#[doc(hidden)]
16
mod static_local;
17
0 commit comments