Remove is_builtin target spec field
It is unused.
This commit is contained in:
parent
9e6d2da83d
commit
775aad80fc
@ -1595,11 +1595,10 @@ mod targets {
|
|||||||
pub const TARGETS: &[&str] = &[$($tuple),+];
|
pub const TARGETS: &[&str] = &[$($tuple),+];
|
||||||
|
|
||||||
fn load_builtin(target: &str) -> Option<Target> {
|
fn load_builtin(target: &str) -> Option<Target> {
|
||||||
let mut t = match target {
|
let t = match target {
|
||||||
$( $tuple => targets::$module::target(), )+
|
$( $tuple => targets::$module::target(), )+
|
||||||
_ => return None,
|
_ => return None,
|
||||||
};
|
};
|
||||||
t.is_builtin = true;
|
|
||||||
debug!("got builtin target: {:?}", t);
|
debug!("got builtin target: {:?}", t);
|
||||||
Some(t)
|
Some(t)
|
||||||
}
|
}
|
||||||
@ -2128,9 +2127,6 @@ pub trait HasX86AbiOpt {
|
|||||||
/// through `Deref` impls.
|
/// through `Deref` impls.
|
||||||
#[derive(PartialEq, Clone, Debug)]
|
#[derive(PartialEq, Clone, Debug)]
|
||||||
pub struct TargetOptions {
|
pub struct TargetOptions {
|
||||||
/// Whether the target is built-in or loaded from a custom target specification.
|
|
||||||
pub is_builtin: bool,
|
|
||||||
|
|
||||||
/// Used as the `target_endian` `cfg` variable. Defaults to little endian.
|
/// Used as the `target_endian` `cfg` variable. Defaults to little endian.
|
||||||
pub endian: Endian,
|
pub endian: Endian,
|
||||||
/// Width of c_int type. Defaults to "32".
|
/// Width of c_int type. Defaults to "32".
|
||||||
@ -2606,7 +2602,6 @@ impl Default for TargetOptions {
|
|||||||
/// incomplete, and if used for compilation, will certainly not work.
|
/// incomplete, and if used for compilation, will certainly not work.
|
||||||
fn default() -> TargetOptions {
|
fn default() -> TargetOptions {
|
||||||
TargetOptions {
|
TargetOptions {
|
||||||
is_builtin: false,
|
|
||||||
endian: Endian::Little,
|
endian: Endian::Little,
|
||||||
c_int_width: "32".into(),
|
c_int_width: "32".into(),
|
||||||
os: "none".into(),
|
os: "none".into(),
|
||||||
@ -3349,7 +3344,6 @@ macro_rules! key {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
key!(is_builtin, bool);
|
|
||||||
key!(c_int_width = "target-c-int-width");
|
key!(c_int_width = "target-c-int-width");
|
||||||
key!(c_enum_min_bits, Option<u64>); // if None, matches c_int_width
|
key!(c_enum_min_bits, Option<u64>); // if None, matches c_int_width
|
||||||
key!(os);
|
key!(os);
|
||||||
@ -3462,10 +3456,6 @@ macro_rules! key {
|
|||||||
key!(entry_abi, Conv)?;
|
key!(entry_abi, Conv)?;
|
||||||
key!(supports_xray, bool);
|
key!(supports_xray, bool);
|
||||||
|
|
||||||
if base.is_builtin {
|
|
||||||
// This can cause unfortunate ICEs later down the line.
|
|
||||||
return Err("may not set is_builtin for targets not built-in".into());
|
|
||||||
}
|
|
||||||
base.update_from_cli();
|
base.update_from_cli();
|
||||||
|
|
||||||
// Each field should have been read using `Json::remove` so any keys remaining are unused.
|
// Each field should have been read using `Json::remove` so any keys remaining are unused.
|
||||||
@ -3635,7 +3625,6 @@ macro_rules! target_option_val {
|
|||||||
target_val!(arch);
|
target_val!(arch);
|
||||||
target_val!(data_layout);
|
target_val!(data_layout);
|
||||||
|
|
||||||
target_option_val!(is_builtin);
|
|
||||||
target_option_val!(endian, "target-endian");
|
target_option_val!(endian, "target-endian");
|
||||||
target_option_val!(c_int_width, "target-c-int-width");
|
target_option_val!(c_int_width, "target-c-int-width");
|
||||||
target_option_val!(os);
|
target_option_val!(os);
|
||||||
|
@ -1,7 +0,0 @@
|
|||||||
{
|
|
||||||
"arch": "x86_64",
|
|
||||||
"is-builtin": true,
|
|
||||||
"data-layout": "e-m:e-i64:64-f80:128-n8:16:32:64-S128",
|
|
||||||
"llvm-target": "x86_64-unknown-unknown-gnu",
|
|
||||||
"target-pointer-width": "64"
|
|
||||||
}
|
|
@ -52,11 +52,6 @@ fn main() {
|
|||||||
.expected_file("test-platform.json")
|
.expected_file("test-platform.json")
|
||||||
.actual_text("test-platform-2", test_platform_2)
|
.actual_text("test-platform-2", test_platform_2)
|
||||||
.run();
|
.run();
|
||||||
rustc()
|
|
||||||
.input("foo.rs")
|
|
||||||
.target("definitely-not-builtin-target")
|
|
||||||
.run_fail()
|
|
||||||
.assert_stderr_contains("may not set is_builtin");
|
|
||||||
rustc()
|
rustc()
|
||||||
.input("foo.rs")
|
.input("foo.rs")
|
||||||
.target("endianness-mismatch")
|
.target("endianness-mismatch")
|
||||||
|
Loading…
Reference in New Issue
Block a user