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 e8762c9 commit 870c1c8Copy full SHA for 870c1c8
build.rs
@@ -246,6 +246,9 @@ fn main() {
246
// arm-linux-androideabi is v5te
247
// https://github.com/rust-lang/rust/blob/1.70.0/compiler/rustc_target/src/spec/arm_linux_androideabi.rs#L11-L12
248
_ if target == "arm-linux-androideabi" => subarch = "v5te",
249
+ // armeb-unknown-linux-gnueabi is v8
250
+ // https://github.com/rust-lang/rust/blob/1.70.0/compiler/rustc_target/src/spec/armeb_unknown_linux_gnueabi.rs#L12
251
+ _ if target == "armeb-unknown-linux-gnueabi" => subarch = "v8",
252
// v6 targets other than v6m don't have *class target feature.
253
"" | "v6" | "v6k" => subarch = "v6",
254
// Other targets don't have *class target feature.
0 commit comments