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 11# 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+
26[llvm ]
37# This enables debug-assertions in LLVM,
48# catching logic errors in codegen much earlier in the process.
Original file line number Diff line number Diff line change 11# 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+
26[rust ]
37# This enables `RUSTC_LOG=debug`, avoiding confusing situations
48# 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"
1414[build ]
1515# Document with the in-tree rustdoc by default, since `download-rustc` makes it quick to compile.
1616doc-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
1719
1820[llvm ]
1921# Will download LLVM from CI if available on your platform.
You can’t perform that action at this time.
0 commit comments