[AVR] Rename the 'none_base' target spec module to 'freestanding_base'

This commit is contained in:
Dylan McKay 2020-04-01 20:51:05 +13:00
parent 8ba9cbd5c0
commit 1f0652ff67
3 changed files with 2 additions and 2 deletions

View File

@ -12,6 +12,6 @@ pub fn target() -> TargetResult {
target_env: "".to_string(),
target_vendor: "unknown".to_string(),
target_c_int_width: 16.to_string(),
options: super::none_base::opts(),
options: super::freestanding_base::opts(),
})
}

View File

@ -54,6 +54,7 @@ mod arm_base;
mod cloudabi_base;
mod dragonfly_base;
mod freebsd_base;
mod freestanding_base;
mod fuchsia_base;
mod haiku_base;
mod hermit_base;
@ -65,7 +66,6 @@ mod linux_kernel_base;
mod linux_musl_base;
mod msvc_base;
mod netbsd_base;
mod none_base;
mod openbsd_base;
mod redox_base;
mod riscv_base;