Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit df7ad3a

Browse files
committed
bootstrap: Add LLVM target matching for M68k
1 parent 0ad0d30 commit df7ad3a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

config.toml.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ changelog-seen = 2
103103
# the same format as above, but since these targets are experimental, they are
104104
# not built by default and the experimental Rust compilation targets that depend
105105
# on them will not work unless the user opts in to building them.
106-
#experimental-targets = "AVR"
106+
#experimental-targets = "AVR;M68k"
107107

108108
# Cap the number of parallel linker invocations when compiling LLVM.
109109
# This can be useful when building LLVM with debug info, which significantly

src/bootstrap/native.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ impl Step for Llvm {
165165

166166
let llvm_exp_targets = match builder.config.llvm_experimental_targets {
167167
Some(ref s) => s,
168-
None => "AVR",
168+
None => "AVR;M68k",
169169
};
170170

171171
let assertions = if builder.config.llvm_assertions { "ON" } else { "OFF" };

0 commit comments

Comments
 (0)