Auto merge of #88321 - glaubitz:m68k-linux, r=wesleywiser

Add initial support for m68k

This patch series adds initial support for m68k making use of the new M68k
backend introduced with LLVM-13. Additional changes will be needed to be
able to actually use the backend for this target.
This commit is contained in:
bors
2021-09-20 07:21:05 +00:00
18 changed files with 196 additions and 2 deletions

View File

@@ -879,6 +879,7 @@ pub mod consts {
/// - x86_64
/// - arm
/// - aarch64
/// - m68k
/// - mips
/// - mips64
/// - powerpc

View File

@@ -27,6 +27,7 @@ pub use self::arch::{blkcnt_t, blksize_t, ino_t, nlink_t, off_t, stat, time_t};
#[cfg(any(
target_arch = "x86",
target_arch = "le32",
target_arch = "m68k",
target_arch = "powerpc",
target_arch = "sparc",
target_arch = "arm",