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
This commit is contained in:
commit
977bbb4d50
1 changed files with 3 additions and 3 deletions
|
@ -19,9 +19,9 @@ lto = "off"
|
||||||
frame-pointers = true
|
frame-pointers = true
|
||||||
|
|
||||||
[llvm]
|
[llvm]
|
||||||
# This enables debug-assertions in LLVM,
|
# Having this set to true disrupts compiler development workflows for people who use `llvm.download-ci-llvm = true`
|
||||||
# catching logic errors in codegen much earlier in the process.
|
# because we don't provide ci-llvm on the `rustc-alt-builds` server. Therefore, it is kept off by default.
|
||||||
assertions = true
|
assertions = false
|
||||||
# Enable warnings during the LLVM compilation (when LLVM is changed, causing a compilation)
|
# Enable warnings during the LLVM compilation (when LLVM is changed, causing a compilation)
|
||||||
enable-warnings = true
|
enable-warnings = true
|
||||||
# Will download LLVM from CI if available on your platform.
|
# Will download LLVM from CI if available on your platform.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue