Rollup merge of #41656 - malbarbo:android-armeabi, r=alexcrichton
Change arm-linux-androideabi to correspond to the armeabi official ABI Fixes #40941.
This commit is contained in:
commit
c3868322ba
1 changed files with 2 additions and 1 deletions
|
|
@ -13,7 +13,8 @@ use target::{Target, TargetOptions, TargetResult};
|
|||
|
||||
pub fn target() -> TargetResult {
|
||||
let mut base = super::android_base::opts();
|
||||
base.features = "+v7,+vfp3,+d16".to_string();
|
||||
// https://developer.android.com/ndk/guides/abis.html#armeabi
|
||||
base.features = "+v5te".to_string();
|
||||
base.max_atomic_width = Some(64);
|
||||
|
||||
Ok(Target {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue