diff options
| author | Daniel Paoliello <danpao@microsoft.com> | 2025-08-10 12:22:13 -0700 |
|---|---|---|
| committer | Daniel Paoliello <danpao@microsoft.com> | 2025-08-10 12:22:13 -0700 |
| commit | a71b024c893abb51335f55023fbfe43787ac9857 (patch) | |
| tree | 035081f0bb0315401c4598bebb7cf7dab2cd12c9 | |
| parent | 18eeac04fc5c2a4c4a8020dbdf1c652077ad0e4e (diff) | |
| download | rust-a71b024c893abb51335f55023fbfe43787ac9857.tar.gz rust-a71b024c893abb51335f55023fbfe43787ac9857.zip | |
Fix typo with paren rustc_llvm/build.rs
| -rw-r--r-- | compiler/rustc_llvm/build.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_llvm/build.rs b/compiler/rustc_llvm/build.rs index 6c740156c4d..1394edcee6b 100644 --- a/compiler/rustc_llvm/build.rs +++ b/compiler/rustc_llvm/build.rs @@ -255,7 +255,7 @@ fn main() { println!("cargo:rustc-link-lib=kstat"); } - if (target.starts_with("arm") && !target.contains("freebsd")) && !target.contains("ohos") + if (target.starts_with("arm") && !target.contains("freebsd") && !target.contains("ohos")) || target.starts_with("mips-") || target.starts_with("mipsel-") || target.starts_with("powerpc-") |
