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 a1208bf commit 4fec3aaCopy full SHA for 4fec3aa
compiler/rustc_llvm/build.rs
@@ -254,7 +254,10 @@ fn main() {
254
println!("cargo:rustc-link-lib=kstat");
255
}
256
257
- if (target.starts_with("arm") && !target.contains("freebsd") && !target.contains("ohos"))
+ if (target.starts_with("arm")
258
+ && !target.starts_with("arm64")
259
+ && !target.contains("freebsd")
260
+ && !target.contains("ohos"))
261
|| target.starts_with("mips-")
262
|| target.starts_with("mipsel-")
263
|| target.starts_with("powerpc-")
0 commit comments