We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64354a9 commit 88d5aa6Copy full SHA for 88d5aa6
library/std/src/os/mod.rs
@@ -14,9 +14,6 @@ pub mod raw;
14
// documented don't compile (missing things in `libc` which is empty),
15
// so just omit them with an empty module and add the "unstable" attribute.
16
17
-#[cfg(all(target_vendor = "fortanix", target_env = "sgx"))]
18
-pub mod fortanix_sgx;
19
-
20
// Unix, linux, wasi and windows are handled a bit differently.
21
#[cfg(all(
22
doc,
@@ -103,6 +100,8 @@ pub mod dragonfly;
103
100
pub mod emscripten;
104
101
#[cfg(target_os = "espidf")]
105
102
pub mod espidf;
+#[cfg(all(target_vendor = "fortanix", target_env = "sgx"))]
+pub mod fortanix_sgx;
106
#[cfg(target_os = "freebsd")]
107
pub mod freebsd;
108
#[cfg(target_os = "fuchsia")]
0 commit comments