Skip to content

Commit

Permalink
Enable cg_clif tests for riscv64gc
Browse files Browse the repository at this point in the history
  • Loading branch information
bjorn3 committed Oct 21, 2023
1 parent e07f47b commit feade55
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/bootstrap/src/core/build_steps/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2999,7 +2999,10 @@ impl Step for CodegenCranelift {

let triple = run.target.triple;
let target_supported = if triple.contains("linux") {
triple.contains("x86_64") || triple.contains("aarch64") || triple.contains("s390x")
triple.contains("x86_64")
|| triple.contains("aarch64")
|| triple.contains("s390x")
|| triple.contains("riscv64gc")
} else if triple.contains("darwin") || triple.contains("windows") {
triple.contains("x86_64")
} else {
Expand Down

0 comments on commit feade55

Please sign in to comment.