Skip to content

Commit 5af05f8

Browse files
committed
Update target to be in line with recent target refactors
Signed-off-by: Till Wegmueller <toasterson@gmail.com>
1 parent 13426f4 commit 5af05f8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

compiler/rustc_target/src/spec/aarch64_unknown_illumos.rs renamed to compiler/rustc_target/src/spec/targets/aarch64_unknown_illumos.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
use crate::spec::{Cc, LinkerFlavor, SanitizerSet, Target};
1+
use crate::spec::{base, Cc, LinkerFlavor, SanitizerSet, Target};
22

33
pub fn target() -> Target {
4-
let mut base = super::illumos_base::opts();
4+
let mut base = base::illumos::opts();
55
base.add_pre_link_args(LinkerFlavor::Unix(Cc::Yes), &["-std=c99"]);
66
base.cpu = "aarch64".into();
77
base.max_atomic_width = Some(128);

0 commit comments

Comments
 (0)