Skip to content

Commit c386832

Browse files
authored
Rollup merge of #41656 - malbarbo:android-armeabi, r=alexcrichton
Change arm-linux-androideabi to correspond to the armeabi official ABI Fixes #40941.
2 parents 02274a8 + 5cf0446 commit c386832

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/librustc_back/target/arm_linux_androideabi.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ use target::{Target, TargetOptions, TargetResult};
1313

1414
pub fn target() -> TargetResult {
1515
let mut base = super::android_base::opts();
16-
base.features = "+v7,+vfp3,+d16".to_string();
16+
// https://developer.android.com/ndk/guides/abis.html#armeabi
17+
base.features = "+v5te".to_string();
1718
base.max_atomic_width = Some(64);
1819

1920
Ok(Target {

0 commit comments

Comments
 (0)