Enable vfp3-d16 for ARMv7 Android target

Android's [armeabi-v7a ABI][1] guarantees at least VFPv3-d16 hardware FPU
support, so Rust should include this in the default features for the
arm-linux-androideabi target.

[1]: https://developer.android.com/ndk/guides/abis.html
This commit is contained in:
Matt Brubeck 2016-04-20 12:40:38 -07:00
parent 6ece1447f0
commit 4d7b930d88

View File

@ -12,7 +12,7 @@ use target::Target;
pub fn target() -> Target {
let mut base = super::android_base::opts();
base.features = "+v7".to_string();
base.features = "+v7,+vfp3,+d16".to_string();
Target {
llvm_target: "arm-linux-androideabi".to_string(),