1
Fork 0

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:
Matthias Krüger 2024-02-23 09:42:11 +01:00 committed by GitHub
commit 977bbb4d50
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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.