Skip to content

Commit 074809b

Browse files
committed
Removing unneeded cpu defintion and add features analogous to netbsd/freebsd
Signed-off-by: Till Wegmueller <[email protected]>
1 parent 5af05f8 commit 074809b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ use crate::spec::{base, Cc, LinkerFlavor, SanitizerSet, Target};
33
pub fn target() -> Target {
44
let mut base = base::illumos::opts();
55
base.add_pre_link_args(LinkerFlavor::Unix(Cc::Yes), &["-std=c99"]);
6-
base.cpu = "aarch64".into();
76
base.max_atomic_width = Some(128);
87
base.supported_sanitizers = SanitizerSet::ADDRESS | SanitizerSet::CFI;
8+
base.features = "+v8a".into();
99

1010
Target {
1111
// LLVM does not currently have a separate illumos target,

0 commit comments

Comments
 (0)