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:
Corey Farwell 2017-05-02 21:21:21 -04:00 committed by GitHub
commit c3868322ba

View file

@ -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 {