Skip to content

Commit 971f469

Browse files
authored
Rollup merge of #91537 - sunshowers:m68k-gnu, r=joshtriplett
compiler/rustc_target: make m68k-unknown-linux-gnu use the gnu base This makes the m68k arch match the other GNU/Linux based targets by setting the environment to gnu.
2 parents 9c777fc + 6aa5f6f commit 971f469

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/rustc_target/src/spec/m68k_unknown_linux_gnu.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use crate::abi::Endian;
22
use crate::spec::{Target, TargetOptions};
33

44
pub fn target() -> Target {
5-
let mut base = super::linux_base::opts();
5+
let mut base = super::linux_gnu_base::opts();
66
base.max_atomic_width = Some(32);
77

88
Target {

0 commit comments

Comments
 (0)