Fix target_vendor for Android
This commit is contained in:
parent
af68cdfea1
commit
abfedb7d16
3 changed files with 3 additions and 3 deletions
|
|
@ -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(),
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue