Skip to content

Commit 5cf0446

Browse files
committed
Change arm-linux-androideabi to correspond to the armeabi official ABI
Fixes #40941.
1 parent ad1461e commit 5cf0446

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)