|
3 | 3 | #![stable(feature = "os", since = "1.0.0")] |
4 | 4 | #![allow(missing_docs, nonstandard_style, missing_debug_implementations)] |
5 | 5 |
|
6 | | -// When documenting libstd we want to show unix/windows/linux/wasi modules as these are the "main |
7 | | -// modules" that are used across platforms, so all modules are enabled when `cfg(doc)` is set. |
8 | | -// This should help show platform-specific functionality in a hopefully cross-platform way in the |
9 | | -// documentation. |
10 | | -// Note that we deliberately avoid `cfg_if!` here to work around a rust-analyzer bug that would make |
11 | | -// `std::os` submodules unusable: https://github.com/rust-analyzer/rust-analyzer/issues/6038 |
12 | | - |
13 | | -#[cfg(doc)] |
14 | | -#[stable(feature = "rust1", since = "1.0.0")] |
15 | | -pub use crate::sys::unix_ext as unix; |
16 | | - |
17 | | -#[cfg(doc)] |
18 | | -#[stable(feature = "rust1", since = "1.0.0")] |
19 | | -pub use crate::sys::windows_ext as windows; |
20 | | - |
21 | | -#[cfg(doc)] |
22 | | -#[doc(cfg(target_os = "linux"))] |
23 | | -pub mod linux; |
24 | | - |
25 | | -#[cfg(doc)] |
26 | | -#[stable(feature = "wasi_ext_doc", since = "1.35.0")] |
27 | | -pub use crate::sys::wasi_ext as wasi; |
28 | | - |
29 | | -// If we're not documenting libstd then we just expose the main modules as we otherwise would. |
30 | | - |
31 | | -#[cfg(not(doc))] |
32 | | -#[cfg(any(unix, target_os = "hermit"))] |
33 | | -#[stable(feature = "rust1", since = "1.0.0")] |
34 | | -pub use crate::sys::ext as unix; |
35 | | - |
36 | | -#[cfg(not(doc))] |
37 | | -#[cfg(windows)] |
38 | | -#[stable(feature = "rust1", since = "1.0.0")] |
39 | | -pub use crate::sys::ext as windows; |
40 | | - |
41 | | -#[cfg(not(doc))] |
42 | | -#[cfg(any(target_os = "linux", target_os = "l4re"))] |
43 | | -pub mod linux; |
44 | | - |
45 | | -#[cfg(not(doc))] |
46 | | -#[cfg(target_os = "wasi")] |
47 | | -pub mod wasi; |
48 | | - |
49 | | -#[cfg(target_os = "android")] |
50 | | -pub mod android; |
51 | | -#[cfg(target_os = "dragonfly")] |
52 | | -pub mod dragonfly; |
53 | | -#[cfg(target_os = "emscripten")] |
54 | | -pub mod emscripten; |
55 | | -#[cfg(all(target_vendor = "fortanix", target_env = "sgx"))] |
56 | | -pub mod fortanix_sgx; |
57 | | -#[cfg(target_os = "freebsd")] |
58 | | -pub mod freebsd; |
59 | | -#[cfg(target_os = "fuchsia")] |
60 | | -pub mod fuchsia; |
61 | | -#[cfg(target_os = "haiku")] |
62 | | -pub mod haiku; |
63 | | -#[cfg(target_os = "illumos")] |
64 | | -pub mod illumos; |
65 | | -#[cfg(target_os = "ios")] |
66 | | -pub mod ios; |
67 | | -#[cfg(target_os = "macos")] |
68 | | -pub mod macos; |
69 | | -#[cfg(target_os = "netbsd")] |
70 | | -pub mod netbsd; |
71 | | -#[cfg(target_os = "openbsd")] |
72 | | -pub mod openbsd; |
73 | | -#[cfg(target_os = "redox")] |
74 | | -pub mod redox; |
75 | | -#[cfg(target_os = "solaris")] |
76 | | -pub mod solaris; |
77 | | -#[cfg(target_os = "vxworks")] |
78 | | -pub mod vxworks; |
79 | | - |
80 | 6 | pub mod raw; |
| 7 | + |
| 8 | +cfg_if::cfg_if! { |
| 9 | + if #[cfg(all(doc, not(any(target_os = "hermit", |
| 10 | + all(target_arch = "wasm32", not(target_os = "wasi")), |
| 11 | + all(target_vendor = "fortanix", target_env = "sgx")))))]{ |
| 12 | + // When documenting std we want to show the `unix`, `windows`, `linux` and `wasi` |
| 13 | + // modules as these are the "main modules" that are used across platforms, |
| 14 | + // so these modules are enabled when `cfg(doc)` is set. |
| 15 | + // This should help show platform-specific functionality in a hopefully cross-platform |
| 16 | + // way in the documentation. |
| 17 | + |
| 18 | + #[stable(feature = "rust1", since = "1.0.0")] |
| 19 | + pub use crate::sys::unix_ext as unix; |
| 20 | + |
| 21 | + pub mod linux; |
| 22 | + |
| 23 | + #[stable(feature = "wasi_ext_doc", since = "1.35.0")] |
| 24 | + pub use crate::sys::wasi_ext as wasi; |
| 25 | + |
| 26 | + #[stable(feature = "rust1", since = "1.0.0")] |
| 27 | + pub use crate::sys::windows_ext as windows; |
| 28 | + } else if #[cfg(doc)] { |
| 29 | + // On certain platforms right now the "main modules" modules that are |
| 30 | + // documented don't compile (missing things in `libc` which is empty), |
| 31 | + // so just omit them with an empty module. |
| 32 | + |
| 33 | + #[unstable(issue = "none", feature = "std_internals")] |
| 34 | + pub mod unix {} |
| 35 | + |
| 36 | + #[unstable(issue = "none", feature = "std_internals")] |
| 37 | + pub mod linux {} |
| 38 | + |
| 39 | + #[unstable(issue = "none", feature = "std_internals")] |
| 40 | + pub mod wasi {} |
| 41 | + |
| 42 | + #[unstable(issue = "none", feature = "std_internals")] |
| 43 | + pub mod windows {} |
| 44 | + } else { |
| 45 | + // If we're not documenting std then we only expose modules appropriate for the |
| 46 | + // current platform. |
| 47 | + |
| 48 | + #[cfg(all(target_vendor = "fortanix", target_env = "sgx"))] |
| 49 | + pub mod fortanix_sgx; |
| 50 | + |
| 51 | + #[cfg(any(unix, target_os = "hermit"))] |
| 52 | + #[stable(feature = "rust1", since = "1.0.0")] |
| 53 | + pub use crate::sys::ext as unix; |
| 54 | + #[cfg(target_os = "android")] |
| 55 | + pub mod android; |
| 56 | + #[cfg(target_os = "dragonfly")] |
| 57 | + pub mod dragonfly; |
| 58 | + #[cfg(target_os = "emscripten")] |
| 59 | + pub mod emscripten; |
| 60 | + #[cfg(target_os = "freebsd")] |
| 61 | + pub mod freebsd; |
| 62 | + #[cfg(target_os = "fuchsia")] |
| 63 | + pub mod fuchsia; |
| 64 | + #[cfg(target_os = "haiku")] |
| 65 | + pub mod haiku; |
| 66 | + #[cfg(target_os = "illumos")] |
| 67 | + pub mod illumos; |
| 68 | + #[cfg(target_os = "ios")] |
| 69 | + pub mod ios; |
| 70 | + #[cfg(target_os = "l4re")] |
| 71 | + pub mod linux; |
| 72 | + #[cfg(target_os = "linux")] |
| 73 | + pub mod linux; |
| 74 | + #[cfg(target_os = "macos")] |
| 75 | + pub mod macos; |
| 76 | + #[cfg(target_os = "netbsd")] |
| 77 | + pub mod netbsd; |
| 78 | + #[cfg(target_os = "openbsd")] |
| 79 | + pub mod openbsd; |
| 80 | + #[cfg(target_os = "redox")] |
| 81 | + pub mod redox; |
| 82 | + #[cfg(target_os = "solaris")] |
| 83 | + pub mod solaris; |
| 84 | + |
| 85 | + #[cfg(target_os = "vxworks")] |
| 86 | + pub mod vxworks; |
| 87 | + |
| 88 | + #[cfg(target_os = "wasi")] |
| 89 | + pub mod wasi; |
| 90 | + |
| 91 | + #[cfg(windows)] |
| 92 | + #[stable(feature = "rust1", since = "1.0.0")] |
| 93 | + pub use crate::sys::ext as windows; |
| 94 | + } |
| 95 | +} |
0 commit comments