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 b87b0e6 commit 5c31980Copy full SHA for 5c31980
build.rs
@@ -160,6 +160,9 @@ fn main() {
160
// arm-linux-androideabi is v5te
161
// https://github.com/rust-lang/rust/blob/1.70.0/compiler/rustc_target/src/spec/arm_linux_androideabi.rs#L11-L12
162
_ if target == "arm-linux-androideabi" => subarch = "v5te",
163
+ // armeb-unknown-linux-gnueabi is v8
164
+ // https://github.com/rust-lang/rust/blob/1.70.0/compiler/rustc_target/src/spec/armeb_unknown_linux_gnueabi.rs#L12
165
+ _ if target == "armeb-unknown-linux-gnueabi" => subarch = "v8",
166
// v6 targets other than v6m don't have *class target feature.
167
"" | "v6" | "v6k" => subarch = "v6",
168
// Other targets don't have *class target feature.
0 commit comments