This repository was archived by the owner on May 28, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +10
-0
lines changed Expand file tree Collapse file tree 3 files changed +10
-0
lines changed Original file line number Diff line number Diff line change 1
1
# These defaults are meant for contributors to the compiler who modify codegen or LLVM
2
+ [build ]
3
+ # Contributors working on the compiler will probably expect compiler docs to be generated.
4
+ compiler-docs = true
5
+
2
6
[llvm ]
3
7
# This enables debug-assertions in LLVM,
4
8
# catching logic errors in codegen much earlier in the process.
Original file line number Diff line number Diff line change 1
1
# These defaults are meant for contributors to the compiler who do not modify codegen or LLVM
2
+ [build ]
3
+ # Contributors working on the compiler will probably expect compiler docs to be generated.
4
+ compiler-docs = true
5
+
2
6
[rust ]
3
7
# This enables `RUSTC_LOG=debug`, avoiding confusing situations
4
8
# where adding `debug!()` appears to do nothing.
Original file line number Diff line number Diff line change @@ -14,6 +14,8 @@ download-rustc = "if-unchanged"
14
14
[build ]
15
15
# Document with the in-tree rustdoc by default, since `download-rustc` makes it quick to compile.
16
16
doc-stage = 2
17
+ # Contributors working on tools will probably expect compiler docs to be generated, so they can figure out how to use the API.
18
+ compiler-docs = true
17
19
18
20
[llvm ]
19
21
# Will download LLVM from CI if available on your platform.
You can’t perform that action at this time.
0 commit comments