Skip to content

Commit 24f26a3

Browse files
committed
Rearrange config.codegen.toml to match config.compiler.toml
This makes it easier to see which parts of the two profiles are different.
1 parent 2f19122 commit 24f26a3

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/bootstrap/defaults/config.codegen.toml

+9-9
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,6 @@
33
# Contributors working on the compiler will probably expect compiler docs to be generated.
44
compiler-docs = true
55

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-
156
[rust]
167
# This enables `RUSTC_LOG=debug`, avoiding confusing situations
178
# where adding `debug!()` appears to do nothing.
@@ -23,3 +14,12 @@ incremental = true
2314
backtrace-on-ice = true
2415
# Make the compiler and standard library faster to build, at the expense of a ~20% runtime slowdown.
2516
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

0 commit comments

Comments
 (0)