mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-26 00:34:06 +00:00
Update i686-linux-android features to match android ABI.
This commit is contained in:
parent
088d417852
commit
148b5e4e10
@ -12,9 +12,13 @@ use target::Target;
|
||||
|
||||
pub fn target() -> Target {
|
||||
let mut base = super::android_base::opts();
|
||||
base.cpu = "pentium4".to_string();
|
||||
|
||||
base.max_atomic_width = 64;
|
||||
|
||||
// http://developer.android.com/ndk/guides/abis.html#x86
|
||||
base.cpu = "pentiumpro".to_string();
|
||||
base.features = "+mmx,+sse,+sse2,+sse3,+ssse3".to_string();
|
||||
|
||||
Target {
|
||||
llvm_target: "i686-linux-android".to_string(),
|
||||
target_endian: "little".to_string(),
|
||||
|
Loading…
Reference in New Issue
Block a user