diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2021-12-06 00:11:50 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-06 00:11:50 +0100 |
| commit | 971f4692362400d48732da91884be047260ff17d (patch) | |
| tree | 279b0a724894ed5d9e032ef071bf57d1f2537d3d | |
| parent | 9c777fc6b0b2bc78a40838b6b24e8aa0ff49e8ed (diff) | |
| parent | 6aa5f6faf39d20fa559e6084e42275d4d558184e (diff) | |
| download | rust-971f4692362400d48732da91884be047260ff17d.tar.gz rust-971f4692362400d48732da91884be047260ff17d.zip | |
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.
| -rw-r--r-- | compiler/rustc_target/src/spec/m68k_unknown_linux_gnu.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_target/src/spec/m68k_unknown_linux_gnu.rs b/compiler/rustc_target/src/spec/m68k_unknown_linux_gnu.rs index fff7b25a349..5671b59c63f 100644 --- a/compiler/rustc_target/src/spec/m68k_unknown_linux_gnu.rs +++ b/compiler/rustc_target/src/spec/m68k_unknown_linux_gnu.rs @@ -2,7 +2,7 @@ use crate::abi::Endian; use crate::spec::{Target, TargetOptions}; pub fn target() -> Target { - let mut base = super::linux_base::opts(); + let mut base = super::linux_gnu_base::opts(); base.max_atomic_width = Some(32); Target { |
