We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8279176 commit b77590cCopy full SHA for b77590c
src/bootstrap/src/core/build_steps/llvm.rs
@@ -479,7 +479,6 @@ impl Step for Llvm {
479
480
if helpers::forcing_clang_based_tests() {
481
enabled_llvm_projects.push("clang");
482
- enabled_llvm_projects.push("compiler-rt");
483
}
484
485
if builder.config.llvm_polly {
@@ -502,6 +501,10 @@ impl Step for Llvm {
502
501
503
let mut enabled_llvm_runtimes = Vec::new();
504
+ if helpers::forcing_clang_based_tests() {
505
+ enabled_llvm_runtimes.push("compiler-rt");
506
+ }
507
+
508
if builder.config.llvm_offload {
509
enabled_llvm_runtimes.push("offload");
510
//FIXME(ZuseZ4): LLVM intends to drop the offload dependency on openmp.
0 commit comments