We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edfd67b commit 4b290d4Copy full SHA for 4b290d4
src/bootstrap/src/core/build_steps/test.rs
@@ -3121,16 +3121,8 @@ impl Step for CodegenGCC {
3121
}
3122
3123
let triple = run.target.triple;
3124
- let target_supported = if triple.contains("linux") {
3125
- triple.contains("x86_64")
3126
- || triple.contains("aarch64")
3127
- || triple.contains("s390x")
3128
- || triple.contains("riscv64gc")
3129
- } else if triple.contains("darwin") || triple.contains("windows") {
3130
3131
- } else {
3132
- false
3133
- };
+ let target_supported =
+ if triple.contains("linux") { triple.contains("x86_64") } else { false };
3134
if !target_supported {
3135
builder.info("target not supported by rustc_codegen_gcc. skipping");
3136
return;
0 commit comments