Skip to content

Commit

Permalink
Rollup merge of rust-lang#41656 - malbarbo:android-armeabi, r=alexcri…
Browse files Browse the repository at this point in the history
…chton

Change arm-linux-androideabi to correspond to the armeabi official ABI

Fixes rust-lang#40941.
  • Loading branch information
frewsxcv authored May 3, 2017
2 parents 02274a8 + 5cf0446 commit c386832
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/librustc_back/target/arm_linux_androideabi.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit c386832

Please sign in to comment.