Remove "gnu" from "target_env" because it does not matter for android.

This commit is contained in:
Nerijus Arlauskas 2016-05-08 21:29:49 +03:00
parent 5029a60d83
commit dfc4930fe8
3 changed files with 3 additions and 3 deletions

View file

@ -22,7 +22,7 @@ pub fn target() -> Target {
data_layout: "e-m:e-p:32:32-i64:64-v128:64:128-a:0:32-n32-S64".to_string(), data_layout: "e-m:e-p:32:32-i64:64-v128:64:128-a:0:32-n32-S64".to_string(),
arch: "arm".to_string(), arch: "arm".to_string(),
target_os: "android".to_string(), target_os: "android".to_string(),
target_env: "gnu".to_string(), target_env: "".to_string(),
target_vendor: "unknown".to_string(), target_vendor: "unknown".to_string(),
options: base, options: base,
} }

View file

@ -21,7 +21,7 @@ pub fn target() -> Target {
data_layout: "e-m:e-p:32:32-i64:64-v128:64:128-a:0:32-n32-S64".to_string(), data_layout: "e-m:e-p:32:32-i64:64-v128:64:128-a:0:32-n32-S64".to_string(),
arch: "arm".to_string(), arch: "arm".to_string(),
target_os: "android".to_string(), target_os: "android".to_string(),
target_env: "gnu".to_string(), target_env: "".to_string(),
target_vendor: "unknown".to_string(), target_vendor: "unknown".to_string(),
options: base, options: base,
} }

View file

@ -22,7 +22,7 @@ pub fn target() -> Target {
data_layout: "e-m:e-p:32:32-f64:32:64-f80:32-n8:16:32-S128".to_string(), data_layout: "e-m:e-p:32:32-f64:32:64-f80:32-n8:16:32-S128".to_string(),
arch: "x86".to_string(), arch: "x86".to_string(),
target_os: "android".to_string(), target_os: "android".to_string(),
target_env: "gnu".to_string(), target_env: "".to_string(),
target_vendor: "unknown".to_string(), target_vendor: "unknown".to_string(),
options: base, options: base,
} }