We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ba9cbd commit 1f0652fCopy full SHA for 1f0652f
src/librustc_target/spec/avr_unknown_unknown.rs
@@ -12,6 +12,6 @@ pub fn target() -> TargetResult {
12
target_env: "".to_string(),
13
target_vendor: "unknown".to_string(),
14
target_c_int_width: 16.to_string(),
15
- options: super::none_base::opts(),
+ options: super::freestanding_base::opts(),
16
})
17
}
src/librustc_target/spec/none_base.rs renamed to src/librustc_target/spec/freestanding_base.rs
src/librustc_target/spec/mod.rs
@@ -54,6 +54,7 @@ mod arm_base;
54
mod cloudabi_base;
55
mod dragonfly_base;
56
mod freebsd_base;
57
+mod freestanding_base;
58
mod fuchsia_base;
59
mod haiku_base;
60
mod hermit_base;
@@ -65,7 +66,6 @@ mod linux_kernel_base;
65
66
mod linux_musl_base;
67
mod msvc_base;
68
mod netbsd_base;
-mod none_base;
69
mod openbsd_base;
70
mod redox_base;
71
mod riscv_base;
0 commit comments