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.
2 parents 341d518 + 2805415 commit 78ccb94Copy full SHA for 78ccb94
src/lib.rs
@@ -1649,10 +1649,10 @@ impl Build {
1649
}
1650
} else if target.contains("android") {
1651
let target = target
1652
- .replace("armv7", "arm")
1653
.replace("armv7neon", "arm")
1654
- .replace("thumbv7", "arm")
1655
- .replace("thumbv7neon", "arm");
+ .replace("armv7", "arm")
+ .replace("thumbv7neon", "arm")
+ .replace("thumbv7", "arm");
1656
let gnu_compiler = format!("{}-{}", target, gnu);
1657
let clang_compiler = format!("{}-{}", target, clang);
1658
// Check if gnu compiler is present
0 commit comments