Fix target_vendor for Android

This commit is contained in:
Sebastian Wicki 2015-09-24 19:44:27 +02:00
parent af68cdfea1
commit abfedb7d16
3 changed files with 3 additions and 3 deletions

View file

@ -18,7 +18,7 @@ pub fn target() -> Target {
arch: "aarch64".to_string(),
target_os: "android".to_string(),
target_env: "".to_string(),
target_vendor: "linux".to_string(),
target_vendor: "unknown".to_string(),
options: super::android_base::opts(),
}
}

View file

@ -21,7 +21,7 @@ pub fn target() -> Target {
arch: "arm".to_string(),
target_os: "android".to_string(),
target_env: "gnu".to_string(),
target_vendor: "linux".to_string(),
target_vendor: "unknown".to_string(),
options: base,
}
}

View file

@ -21,7 +21,7 @@ pub fn target() -> Target {
arch: "x86".to_string(),
target_os: "android".to_string(),
target_env: "gnu".to_string(),
target_vendor: "linux".to_string(),
target_vendor: "unknown".to_string(),
options: base,
}
}