[AVR] Remove AVR-specific logic from libstd

It is not possible to compile libstd for AVR anyway.
This commit is contained in:
Dylan McKay 2020-04-01 20:39:09 +13:00
parent b4a041c050
commit 8ba9cbd5c0
1 changed files with 0 additions and 6 deletions

View File

@ -874,7 +874,6 @@ pub mod consts {
/// - x86_64
/// - arm
/// - aarch64
/// - avr
/// - mips
/// - mips64
/// - powerpc
@ -987,11 +986,6 @@ mod arch {
pub const ARCH: &str = "aarch64";
}
#[cfg(target_arch = "avr")]
mod arch {
pub const ARCH: &'static str = "avr";
}
#[cfg(target_arch = "mips")]
mod arch {
pub const ARCH: &str = "mips";