File tree 1 file changed +9
-9
lines changed
1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change 3
3
# Contributors working on the compiler will probably expect compiler docs to be generated.
4
4
compiler-docs = true
5
5
6
- [llvm ]
7
- # This enables debug-assertions in LLVM,
8
- # catching logic errors in codegen much earlier in the process.
9
- assertions = true
10
- # enable warnings during the llvm compilation
11
- enable-warnings = true
12
- # build llvm from source
13
- download-ci-llvm = " if-unchanged"
14
-
15
6
[rust ]
16
7
# This enables `RUSTC_LOG=debug`, avoiding confusing situations
17
8
# where adding `debug!()` appears to do nothing.
@@ -23,3 +14,12 @@ incremental = true
23
14
backtrace-on-ice = true
24
15
# Make the compiler and standard library faster to build, at the expense of a ~20% runtime slowdown.
25
16
lto = " off"
17
+
18
+ [llvm ]
19
+ # build llvm from source
20
+ download-ci-llvm = " if-unchanged"
21
+ # This enables debug-assertions in LLVM,
22
+ # catching logic errors in codegen much earlier in the process.
23
+ assertions = true
24
+ # enable warnings during the llvm compilation
25
+ enable-warnings = true
You can’t perform that action at this time.
0 commit comments