|
13 | 13 | #![stable(feature = "os", since = "1.0.0")]
|
14 | 14 | #![allow(missing_docs, bad_style, missing_debug_implementations)]
|
15 | 15 |
|
16 |
| -#[cfg(all(not(dox), any(target_os = "redox", unix)))] |
17 |
| -#[stable(feature = "rust1", since = "1.0.0")] |
18 |
| -pub use sys::ext as unix; |
19 |
| -#[cfg(all(not(dox), windows))] |
20 |
| -#[stable(feature = "rust1", since = "1.0.0")] |
21 |
| -pub use sys::ext as windows; |
22 |
| - |
23 |
| -#[cfg(dox)] |
24 |
| -#[stable(feature = "rust1", since = "1.0.0")] |
25 |
| -pub use sys::unix_ext as unix; |
26 |
| -#[cfg(dox)] |
27 |
| -#[stable(feature = "rust1", since = "1.0.0")] |
28 |
| -pub use sys::windows_ext as windows; |
29 |
| - |
30 |
| -#[cfg(any(dox, target_os = "linux", target_os = "l4re"))] |
31 |
| -#[doc(cfg(target_os = "linux"))] |
32 |
| -pub mod linux; |
33 |
| - |
34 |
| -#[cfg(all(not(dox), target_os = "android"))] pub mod android; |
35 |
| -#[cfg(all(not(dox), target_os = "bitrig"))] pub mod bitrig; |
36 |
| -#[cfg(all(not(dox), target_os = "dragonfly"))] pub mod dragonfly; |
37 |
| -#[cfg(all(not(dox), target_os = "freebsd"))] pub mod freebsd; |
38 |
| -#[cfg(all(not(dox), target_os = "haiku"))] pub mod haiku; |
39 |
| -#[cfg(all(not(dox), target_os = "ios"))] pub mod ios; |
40 |
| -#[cfg(all(not(dox), target_os = "macos"))] pub mod macos; |
41 |
| -#[cfg(all(not(dox), target_os = "netbsd"))] pub mod netbsd; |
42 |
| -#[cfg(all(not(dox), target_os = "openbsd"))] pub mod openbsd; |
43 |
| -#[cfg(all(not(dox), target_os = "solaris"))] pub mod solaris; |
44 |
| -#[cfg(all(not(dox), target_os = "emscripten"))] pub mod emscripten; |
45 |
| -#[cfg(all(not(dox), target_os = "fuchsia"))] pub mod fuchsia; |
| 16 | +cfg_if! { |
| 17 | + if #[cfg(dox)] { |
| 18 | + |
| 19 | + // When documenting libstd we want to show unix/windows/linux modules as |
| 20 | + // these are the "main modules" that are used across platforms. This |
| 21 | + // should help show platform-specific functionality in a hopefully |
| 22 | + // cross-platform way in the documentation |
| 23 | + |
| 24 | + #[stable(feature = "rust1", since = "1.0.0")] |
| 25 | + pub use sys::unix_ext as unix; |
| 26 | + |
| 27 | + #[stable(feature = "rust1", since = "1.0.0")] |
| 28 | + pub use sys::windows_ext as windows; |
| 29 | + |
| 30 | + #[doc(cfg(target_os = "linux"))] |
| 31 | + pub mod linux; |
| 32 | + |
| 33 | + } else { |
| 34 | + |
| 35 | + // If we're not documenting libstd then we just expose everything as we |
| 36 | + // otherwise would. |
| 37 | + |
| 38 | + #[cfg(target_os = "android")] pub mod android; |
| 39 | + #[cfg(target_os = "bitrig")] pub mod bitrig; |
| 40 | + #[cfg(target_os = "dragonfly")] pub mod dragonfly; |
| 41 | + #[cfg(target_os = "freebsd")] pub mod freebsd; |
| 42 | + #[cfg(target_os = "haiku")] pub mod haiku; |
| 43 | + #[cfg(target_os = "ios")] pub mod ios; |
| 44 | + #[cfg(target_os = "macos")] pub mod macos; |
| 45 | + #[cfg(target_os = "netbsd")] pub mod netbsd; |
| 46 | + #[cfg(target_os = "openbsd")] pub mod openbsd; |
| 47 | + #[cfg(target_os = "solaris")] pub mod solaris; |
| 48 | + #[cfg(target_os = "emscripten")] pub mod emscripten; |
| 49 | + #[cfg(target_os = "fuchsia")] pub mod fuchsia; |
| 50 | + |
| 51 | + #[cfg(any(target_os = "redox", unix))] |
| 52 | + #[stable(feature = "rust1", since = "1.0.0")] |
| 53 | + pub use sys::ext as unix; |
| 54 | + |
| 55 | + #[cfg(windows)] |
| 56 | + #[stable(feature = "rust1", since = "1.0.0")] |
| 57 | + pub use sys::ext as windows; |
| 58 | + |
| 59 | + #[cfg(any(target_os = "linux", target_os = "l4re"))] |
| 60 | + pub mod linux; |
| 61 | + |
| 62 | + } |
| 63 | +} |
46 | 64 |
|
47 | 65 | pub mod raw;
|
0 commit comments