bootstrap: Add LLVM target matching for M68k

This commit is contained in:
John Paul Adrian Glaubitz 2021-08-25 07:43:42 +00:00
parent 0ad0d305ff
commit df7ad3af21
2 changed files with 2 additions and 2 deletions

View file

@ -103,7 +103,7 @@ changelog-seen = 2
# the same format as above, but since these targets are experimental, they are
# not built by default and the experimental Rust compilation targets that depend
# on them will not work unless the user opts in to building them.
#experimental-targets = "AVR"
#experimental-targets = "AVR;M68k"
# Cap the number of parallel linker invocations when compiling LLVM.
# This can be useful when building LLVM with debug info, which significantly

View file

@ -165,7 +165,7 @@ impl Step for Llvm {
let llvm_exp_targets = match builder.config.llvm_experimental_targets {
Some(ref s) => s,
None => "AVR",
None => "AVR;M68k",
};
let assertions = if builder.config.llvm_assertions { "ON" } else { "OFF" };