i686-linux-android: set -mcpu to pentium4.

To allow SSE2 to be used.
This commit is contained in:
Overmind JIANG 2015-08-23 22:49:25 +08:00
parent a1b2deb33b
commit 6a7ed8f97a

View File

@ -11,6 +11,9 @@
use target::Target;
pub fn target() -> Target {
let mut base = super::android_base::opts();
base.cpu = "pentium4".to_string();
Target {
llvm_target: "i686-linux-android".to_string(),
target_endian: "little".to_string(),
@ -18,6 +21,6 @@ pub fn target() -> Target {
arch: "x86".to_string(),
target_os: "android".to_string(),
target_env: "gnu".to_string(),
options: super::android_base::opts(),
options: base,
}
}