about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2024-02-23 09:42:11 +0100
committerGitHub <noreply@github.com>2024-02-23 09:42:11 +0100
commit977bbb4d5030cf02b4e048a6eff9fdf9de1f5fcf (patch)
tree154ca1d25c61227ba46a29fb0e1d849075651eda /src
parent86727df4ed725994130b54b146a16773eff560be (diff)
parent52227edfaf467ac6abe0be085f97884c4502014e (diff)
downloadrust-977bbb4d5030cf02b4e048a6eff9fdf9de1f5fcf.tar.gz
rust-977bbb4d5030cf02b4e048a6eff9fdf9de1f5fcf.zip
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
Diffstat (limited to 'src')
-rw-r--r--src/bootstrap/defaults/config.compiler.toml6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bootstrap/defaults/config.compiler.toml b/src/bootstrap/defaults/config.compiler.toml
index 178c6e9056c..e276f126211 100644
--- a/src/bootstrap/defaults/config.compiler.toml
+++ b/src/bootstrap/defaults/config.compiler.toml
@@ -19,9 +19,9 @@ lto = "off"
 frame-pointers = true
 
 [llvm]
-# This enables debug-assertions in LLVM,
-# catching logic errors in codegen much earlier in the process.
-assertions = true
+# 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.
+assertions = false
 # Enable warnings during the LLVM compilation (when LLVM is changed, causing a compilation)
 enable-warnings = true
 # Will download LLVM from CI if available on your platform.