We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1934fd commit 6769403Copy full SHA for 6769403
crates/core_arch/src/mod.rs
@@ -57,6 +57,13 @@ pub mod arch {
57
58
/// Platform-specific intrinsics for the `wasm32` platform.
59
///
60
+
61
+ /// # Availability
62
+ ///
63
+ /// Note that intrinsics gated by `target_feature = "atomics"` or `target_feature = "simd128"`
64
+ /// are only available **when the standard library itself is compiled with the the respective
65
+ /// target feature**. This version of the standard library is not obtainable via `rustup`,
66
+ /// but rather will require the standard library to be compiled from source.
67
/// See the [module documentation](../index.html) for more details.
68
#[cfg(any(target_arch = "wasm32", dox))]
69
#[doc(cfg(target_arch = "wasm32"))]
0 commit comments