Skip to content

Commit

Permalink
Fix target_vendor for Android
Browse files Browse the repository at this point in the history
  • Loading branch information
gandro committed Sep 24, 2015
1 parent af68cdf commit abfedb7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/librustc_back/target/aarch64_linux_android.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
}
}
2 changes: 1 addition & 1 deletion src/librustc_back/target/arm_linux_androideabi.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}
}
2 changes: 1 addition & 1 deletion src/librustc_back/target/i686_linux_android.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}
}

0 comments on commit abfedb7

Please sign in to comment.