|
| 1 | +# Documenting rustc |
| 2 | + |
| 3 | +You might want to build documentation of the various components |
| 4 | +available like the standard library. There’s two ways to go about this. |
| 5 | + You can run rustdoc directly on the file to make sure the HTML is |
| 6 | + correct, which is fast. Alternatively, you can build the documentation |
| 7 | + as part of the build process through x.py. Both are viable methods |
| 8 | + since documentation is more about the content. |
| 9 | + |
| 10 | +## Document everything |
| 11 | + |
| 12 | + ```bash |
| 13 | + ./x.py doc |
| 14 | + ``` |
| 15 | + |
| 16 | +## If you want to avoid the whole Stage 2 build |
| 17 | + |
| 18 | +```bash |
| 19 | +./x.py doc --stage 1 |
| 20 | +``` |
| 21 | + |
| 22 | +First the compiler and rustdoc get built to make sure everything is okay |
| 23 | +and then it documents the files. |
| 24 | + |
| 25 | +## Document specific components |
| 26 | + |
| 27 | +```bash |
| 28 | +./x.py doc src/doc/book |
| 29 | +./x.py doc src/doc/nomicon |
| 30 | +./x.py doc src/doc/book src/libstd |
| 31 | +``` |
| 32 | + |
| 33 | +Much like individual tests or building certain components you can build only |
| 34 | + the documentation you want. |
| 35 | + |
| 36 | +## Document internal rustc items |
| 37 | + |
| 38 | +Compiler documentation is not built by default. There's a flag in |
| 39 | +config.toml for achieving the same. |
| 40 | +But, when enabled, compiler documentation does include internal items. |
| 41 | + |
| 42 | +Next open up config.toml and make sure these two lines are set to true: |
| 43 | + |
| 44 | +```bash |
| 45 | +docs = true |
| 46 | +compiler-docs = true |
| 47 | +``` |
| 48 | + |
| 49 | +When you want to build the compiler docs as well run this command: |
| 50 | + |
| 51 | +```bash |
| 52 | +./x.py doc |
| 53 | +``` |
| 54 | + |
| 55 | +This will see that the docs and compiler-docs options are set to true |
| 56 | +and build the normally hidden compiler docs! |
| 57 | + |
| 58 | +### Compiler Documentation |
| 59 | + |
| 60 | +The documentation for the rust components are found at [rustc doc]. |
| 61 | + |
| 62 | +[rustc doc]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc/ |
0 commit comments