Skip to content

Commit 977bbb4

Browse files
authoredFeb 23, 2024
Rollup merge of #121476 - onur-ozkan:update-compiler-profile, r=compiler-errors
remove `llvm.assertions=true` in compiler profile Having this set to true disrupts compiler development workflows for people who use `llvm.download-ci-llvm = true` because we don't provide ci-llvm on the `rustc-alt-builds` server. Therefore, it is kept off by default. cc `@Nilstrieb` `@compiler-errors` For more context, see https://rust-lang.zulipchat.com/#narrow/stream/242791-t-infra/topic/CI.20LLVM.20for.20aarch64
2 parents 86727df + 52227ed commit 977bbb4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎src/bootstrap/defaults/config.compiler.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ lto = "off"
1919
frame-pointers = true
2020

2121
[llvm]
22-
# This enables debug-assertions in LLVM,
23-
# catching logic errors in codegen much earlier in the process.
24-
assertions = true
22+
# Having this set to true disrupts compiler development workflows for people who use `llvm.download-ci-llvm = true`
23+
# because we don't provide ci-llvm on the `rustc-alt-builds` server. Therefore, it is kept off by default.
24+
assertions = false
2525
# Enable warnings during the LLVM compilation (when LLVM is changed, causing a compilation)
2626
enable-warnings = true
2727
# Will download LLVM from CI if available on your platform.

0 commit comments

Comments
 (0)