Skip to content

Commit d0f8cf3

Browse files
committed
Rollup merge of #53076 - QuietMisdreavus:cfg-rustdoc, r=GuillaumeGomez
set cfg(rustdoc) when rustdoc is running on a crate When using `#[doc(cfg)]` to document platform-specific items, it's a little cumbersome to get all the platforms' items to appear all at once. For example, the standard library adds `--cfg dox` to rustdoc's command line whenever it builds docs, and the documentation for `#![feature(doc_cfg)]` suggests using a Cargo feature to approximate the same thing. This is a little awkward, because you always need to remember to set `--features dox` whenever you build documentation. This PR proposes making rustdoc set `#[cfg(rustdoc)]` whenever it runs on a crate, to provide an officially-sanctioned version of this that is set automatically. This way, there's a standardized way to declare that a certain version of an item is specifically when building docs. To try to prevent the spread of this feature from happening too quickly, this PR also restricts the use of this flag to whenever `#![feature(doc_cfg)]` is active. I'm sure there are other uses for this, but right now i'm tying it to this feature. (If it makes more sense to give this its own feature, i can easily do that.)
2 parents a0d0060 + ad2169c commit d0f8cf3

File tree

13 files changed

+69
-37
lines changed

13 files changed

+69
-37
lines changed

src/bootstrap/bin/rustdoc.rs

+2
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ fn main() {
3737
let mut dylib_path = bootstrap::util::dylib_path();
3838
dylib_path.insert(0, PathBuf::from(libdir.clone()));
3939

40+
//FIXME(misdreavus): once stdsimd uses cfg(rustdoc) instead of cfg(dox), remove the `--cfg dox`
41+
//arguments here
4042
let mut cmd = Command::new(rustdoc);
4143
cmd.args(&args)
4244
.arg("--cfg")

src/doc/rustdoc/src/unstable-features.md

+9-11
Original file line numberDiff line numberDiff line change
@@ -106,27 +106,25 @@ The `#[doc(cfg(...))]` attribute has another effect: When Rustdoc renders docume
106106
item, it will be accompanied by a banner explaining that the item is only available on certain
107107
platforms.
108108

109-
As mentioned earlier, getting the items to Rustdoc requires some extra preparation. The standard
110-
library adds a `--cfg dox` flag to every Rustdoc command, but the same thing can be accomplished by
111-
adding a feature to your Cargo.toml and adding `--feature dox` (or whatever you choose to name the
112-
feature) to your `cargo doc` calls.
109+
For Rustdoc to document an item, it needs to see it, regardless of what platform it's currently
110+
running on. To aid this, Rustdoc sets the flag `#[cfg(rustdoc)]` when running on your crate.
111+
Combining this with the target platform of a given item allows it to appear when building your crate
112+
normally on that platform, as well as when building documentation anywhere.
113113

114-
Either way, once you create an environment for the documentation, you can start to augment your
115-
`#[cfg]` attributes to allow both the target platform *and* the documentation configuration to leave
116-
the item in. For example, `#[cfg(any(windows, feature = "dox"))]` will preserve the item either on
117-
Windows or during the documentation process. Then, adding a new attribute `#[doc(cfg(windows))]`
118-
will tell Rustdoc that the item is supposed to be used on Windows. For example:
114+
For example, `#[cfg(any(windows, rustdoc))]` will preserve the item either on Windows or during the
115+
documentation process. Then, adding a new attribute `#[doc(cfg(windows))]` will tell Rustdoc that
116+
the item is supposed to be used on Windows. For example:
119117

120118
```rust
121119
#![feature(doc_cfg)]
122120

123121
/// Token struct that can only be used on Windows.
124-
#[cfg(any(windows, feature = "dox"))]
122+
#[cfg(any(windows, rustdoc))]
125123
#[doc(cfg(windows))]
126124
pub struct WindowsToken;
127125

128126
/// Token struct that can only be used on Unix.
129-
#[cfg(any(unix, feature = "dox"))]
127+
#[cfg(any(unix, rustdoc))]
130128
#[doc(cfg(unix))]
131129
pub struct UnixToken;
132130
```

src/doc/unstable-book/src/language-features/doc-cfg.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,17 @@ This attribute has two effects:
1212

1313
2. The item's doc-tests will only run on the specific platform.
1414

15+
In addition to allowing the use of the `#[doc(cfg)]` attribute, this feature enables the use of a
16+
special conditional compilation flag, `#[cfg(rustdoc)]`, set whenever building documentation on your
17+
crate.
18+
1519
This feature was introduced as part of PR [#43348] to allow the platform-specific parts of the
1620
standard library be documented.
1721

1822
```rust
1923
#![feature(doc_cfg)]
2024

21-
#[cfg(any(windows, feature = "documentation"))]
25+
#[cfg(any(windows, rustdoc))]
2226
#[doc(cfg(windows))]
2327
/// The application's icon in the notification area (a.k.a. system tray).
2428
///
@@ -39,4 +43,4 @@ pub struct Icon {
3943
```
4044

4145
[#43781]: https://github.com/rust-lang/rust/issues/43781
42-
[#43348]: https://github.com/rust-lang/rust/issues/43348
46+
[#43348]: https://github.com/rust-lang/rust/issues/43348

src/libcore/macros.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -541,7 +541,7 @@ macro_rules! unimplemented {
541541
/// into libsyntax itself.
542542
///
543543
/// For more information, see documentation for `std`'s macros.
544-
#[cfg(dox)]
544+
#[cfg(rustdoc)]
545545
mod builtin {
546546

547547
/// Unconditionally causes compilation to fail with the given error message when encountered.

src/librustdoc/lib.rs

+4-2
Original file line numberDiff line numberDiff line change
@@ -477,7 +477,8 @@ fn main_args(args: &[String]) -> isize {
477477

478478
let output = matches.opt_str("o").map(|s| PathBuf::from(&s));
479479
let css_file_extension = matches.opt_str("e").map(|s| PathBuf::from(&s));
480-
let cfgs = matches.opt_strs("cfg");
480+
let mut cfgs = matches.opt_strs("cfg");
481+
cfgs.push("rustdoc".to_string());
481482

482483
if let Some(ref p) = css_file_extension {
483484
if !p.is_file() {
@@ -671,7 +672,8 @@ where R: 'static + Send,
671672
for s in &matches.opt_strs("L") {
672673
paths.add_path(s, ErrorOutputType::default());
673674
}
674-
let cfgs = matches.opt_strs("cfg");
675+
let mut cfgs = matches.opt_strs("cfg");
676+
cfgs.push("rustdoc".to_string());
675677
let triple = matches.opt_str("target").map(|target| {
676678
if target.ends_with(".json") {
677679
TargetTriple::TargetPath(PathBuf::from(target))

src/libstd/macros.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ macro_rules! assert_approx_eq {
309309
/// These macros do not have any corresponding definition with a `macro_rules!`
310310
/// macro, but are documented here. Their implementations can be found hardcoded
311311
/// into libsyntax itself.
312-
#[cfg(dox)]
312+
#[cfg(rustdoc)]
313313
mod builtin {
314314

315315
/// Unconditionally causes compilation to fail with the given error message when encountered.

src/libstd/os/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
#![allow(missing_docs, nonstandard_style, missing_debug_implementations)]
1515

1616
cfg_if! {
17-
if #[cfg(dox)] {
17+
if #[cfg(rustdoc)] {
1818

1919
// When documenting libstd we want to show unix/windows/linux modules as
2020
// these are the "main modules" that are used across platforms. This

src/libstd/sys/mod.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ cfg_if! {
5757
// then later used in the `std::os` module when documenting, for example,
5858
// Windows when we're compiling for Linux.
5959

60-
#[cfg(dox)]
60+
#[cfg(rustdoc)]
6161
cfg_if! {
6262
if #[cfg(any(unix, target_os = "redox"))] {
6363
// On unix we'll document what's already available
@@ -77,7 +77,7 @@ cfg_if! {
7777
}
7878
}
7979

80-
#[cfg(dox)]
80+
#[cfg(rustdoc)]
8181
cfg_if! {
8282
if #[cfg(windows)] {
8383
// On windows we'll just be documenting what's already available

src/libstd/sys/unix/mod.rs

+16-16
Original file line numberDiff line numberDiff line change
@@ -13,22 +13,22 @@
1313
use io::{self, ErrorKind};
1414
use libc;
1515

16-
#[cfg(any(dox, target_os = "linux"))] pub use os::linux as platform;
17-
18-
#[cfg(all(not(dox), target_os = "android"))] pub use os::android as platform;
19-
#[cfg(all(not(dox), target_os = "bitrig"))] pub use os::bitrig as platform;
20-
#[cfg(all(not(dox), target_os = "dragonfly"))] pub use os::dragonfly as platform;
21-
#[cfg(all(not(dox), target_os = "freebsd"))] pub use os::freebsd as platform;
22-
#[cfg(all(not(dox), target_os = "haiku"))] pub use os::haiku as platform;
23-
#[cfg(all(not(dox), target_os = "ios"))] pub use os::ios as platform;
24-
#[cfg(all(not(dox), target_os = "macos"))] pub use os::macos as platform;
25-
#[cfg(all(not(dox), target_os = "netbsd"))] pub use os::netbsd as platform;
26-
#[cfg(all(not(dox), target_os = "openbsd"))] pub use os::openbsd as platform;
27-
#[cfg(all(not(dox), target_os = "solaris"))] pub use os::solaris as platform;
28-
#[cfg(all(not(dox), target_os = "emscripten"))] pub use os::emscripten as platform;
29-
#[cfg(all(not(dox), target_os = "fuchsia"))] pub use os::fuchsia as platform;
30-
#[cfg(all(not(dox), target_os = "l4re"))] pub use os::linux as platform;
31-
#[cfg(all(not(dox), target_os = "hermit"))] pub use os::hermit as platform;
16+
#[cfg(any(rustdoc, target_os = "linux"))] pub use os::linux as platform;
17+
18+
#[cfg(all(not(rustdoc), target_os = "android"))] pub use os::android as platform;
19+
#[cfg(all(not(rustdoc), target_os = "bitrig"))] pub use os::bitrig as platform;
20+
#[cfg(all(not(rustdoc), target_os = "dragonfly"))] pub use os::dragonfly as platform;
21+
#[cfg(all(not(rustdoc), target_os = "freebsd"))] pub use os::freebsd as platform;
22+
#[cfg(all(not(rustdoc), target_os = "haiku"))] pub use os::haiku as platform;
23+
#[cfg(all(not(rustdoc), target_os = "ios"))] pub use os::ios as platform;
24+
#[cfg(all(not(rustdoc), target_os = "macos"))] pub use os::macos as platform;
25+
#[cfg(all(not(rustdoc), target_os = "netbsd"))] pub use os::netbsd as platform;
26+
#[cfg(all(not(rustdoc), target_os = "openbsd"))] pub use os::openbsd as platform;
27+
#[cfg(all(not(rustdoc), target_os = "solaris"))] pub use os::solaris as platform;
28+
#[cfg(all(not(rustdoc), target_os = "emscripten"))] pub use os::emscripten as platform;
29+
#[cfg(all(not(rustdoc), target_os = "fuchsia"))] pub use os::fuchsia as platform;
30+
#[cfg(all(not(rustdoc), target_os = "l4re"))] pub use os::linux as platform;
31+
#[cfg(all(not(rustdoc), target_os = "hermit"))] pub use os::hermit as platform;
3232

3333
pub use self::rand::hashmap_random_keys;
3434
pub use libc::strlen;

src/libstd/sys/windows/c.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -794,7 +794,7 @@ pub struct FLOATING_SAVE_AREA {
794794
// will not appear in the final documentation. This should be also defined for
795795
// other architectures supported by Windows such as ARM, and for historical
796796
// interest, maybe MIPS and PowerPC as well.
797-
#[cfg(all(dox, not(any(target_arch = "x86_64", target_arch = "x86", target_arch = "aarch64"))))]
797+
#[cfg(all(rustdoc, not(any(target_arch = "x86_64", target_arch = "x86", target_arch = "aarch64"))))]
798798
pub enum CONTEXT {}
799799

800800
#[cfg(target_arch = "aarch64")]

src/libsyntax/feature_gate.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1151,6 +1151,7 @@ const GATED_CFGS: &[(&str, &str, fn(&Features) -> bool)] = &[
11511151
("target_vendor", "cfg_target_vendor", cfg_fn!(cfg_target_vendor)),
11521152
("target_thread_local", "cfg_target_thread_local", cfg_fn!(cfg_target_thread_local)),
11531153
("target_has_atomic", "cfg_target_has_atomic", cfg_fn!(cfg_target_has_atomic)),
1154+
("rustdoc", "doc_cfg", cfg_fn!(doc_cfg)),
11541155
];
11551156

11561157
#[derive(Debug)]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
// Copyright 2018 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
11+
#[cfg(rustdoc)] //~ ERROR: `cfg(rustdoc)` is experimental and subject to change
12+
pub struct SomeStruct;
13+
14+
fn main() {}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
error[E0658]: `cfg(rustdoc)` is experimental and subject to change (see issue #43781)
2+
--> $DIR/feature-gate-doc_cfg-cfg-rustdoc.rs:11:7
3+
|
4+
LL | #[cfg(rustdoc)] //~ ERROR: `cfg(rustdoc)` is experimental and subject to change
5+
| ^^^^^^^
6+
|
7+
= help: add #![feature(doc_cfg)] to the crate attributes to enable
8+
9+
error: aborting due to previous error
10+
11+
For more information about this error, try `rustc --explain E0658`.

0 commit comments

Comments
 (0)