Enable compiler-docs by default for compiler
, codegen
, and tools
profiles.
This commit is contained in:
parent
30f3860875
commit
7443cc2bd6
3 changed files with 10 additions and 0 deletions
|
@ -1,4 +1,8 @@
|
||||||
# These defaults are meant for contributors to the compiler who modify codegen or LLVM
|
# These defaults are meant for contributors to the compiler who modify codegen or LLVM
|
||||||
|
[build]
|
||||||
|
# Contributors working on the compiler will probably expect compiler docs to be generated.
|
||||||
|
compiler-docs = true
|
||||||
|
|
||||||
[llvm]
|
[llvm]
|
||||||
# This enables debug-assertions in LLVM,
|
# This enables debug-assertions in LLVM,
|
||||||
# catching logic errors in codegen much earlier in the process.
|
# catching logic errors in codegen much earlier in the process.
|
||||||
|
|
|
@ -1,4 +1,8 @@
|
||||||
# These defaults are meant for contributors to the compiler who do not modify codegen or LLVM
|
# These defaults are meant for contributors to the compiler who do not modify codegen or LLVM
|
||||||
|
[build]
|
||||||
|
# Contributors working on the compiler will probably expect compiler docs to be generated.
|
||||||
|
compiler-docs = true
|
||||||
|
|
||||||
[rust]
|
[rust]
|
||||||
# This enables `RUSTC_LOG=debug`, avoiding confusing situations
|
# This enables `RUSTC_LOG=debug`, avoiding confusing situations
|
||||||
# where adding `debug!()` appears to do nothing.
|
# where adding `debug!()` appears to do nothing.
|
||||||
|
|
|
@ -14,6 +14,8 @@ download-rustc = "if-unchanged"
|
||||||
[build]
|
[build]
|
||||||
# Document with the in-tree rustdoc by default, since `download-rustc` makes it quick to compile.
|
# Document with the in-tree rustdoc by default, since `download-rustc` makes it quick to compile.
|
||||||
doc-stage = 2
|
doc-stage = 2
|
||||||
|
# Contributors working on tools will probably expect compiler docs to be generated, so they can figure out how to use the API.
|
||||||
|
compiler-docs = true
|
||||||
|
|
||||||
[llvm]
|
[llvm]
|
||||||
# Will download LLVM from CI if available on your platform.
|
# Will download LLVM from CI if available on your platform.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue