Skip to content

Commit 72f4ff2

Browse files
authored
Rollup merge of #144640 - FractalFir:m68k_arch, r=Urgau
Add support for the m68k architecture in 'object_architecture' This is a tiny PR that adds the m68k architecture to `object_architecture`. This allows us to build rmeta files for that ISA(we use the object crate to pack metadata into object files).
2 parents 322686d + 652b9eb commit 72f4ff2

File tree

1 file changed

+1
-0
lines changed
  • compiler/rustc_target/src/spec

1 file changed

+1
-0
lines changed

compiler/rustc_target/src/spec/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3598,6 +3598,7 @@ impl Target {
35983598
),
35993599
"x86" => (Architecture::I386, None),
36003600
"s390x" => (Architecture::S390x, None),
3601+
"m68k" => (Architecture::M68k, None),
36013602
"mips" | "mips32r6" => (Architecture::Mips, None),
36023603
"mips64" | "mips64r6" => (
36033604
// While there are currently no builtin targets

0 commit comments

Comments
 (0)