Skip to content

Commit

Permalink
Removing unneeded cpu defintion and add features analogous to netbsd/…
Browse files Browse the repository at this point in the history
…freebsd

Signed-off-by: Till Wegmueller <toasterson@gmail.com>
  • Loading branch information
Toasterson committed Dec 21, 2023
1 parent 5af05f8 commit 074809b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ use crate::spec::{base, Cc, LinkerFlavor, SanitizerSet, Target};
pub fn target() -> Target {
let mut base = base::illumos::opts();
base.add_pre_link_args(LinkerFlavor::Unix(Cc::Yes), &["-std=c99"]);
base.cpu = "aarch64".into();
base.max_atomic_width = Some(128);
base.supported_sanitizers = SanitizerSet::ADDRESS | SanitizerSet::CFI;
base.features = "+v8a".into();

Target {
// LLVM does not currently have a separate illumos target,
Expand Down

0 comments on commit 074809b

Please sign in to comment.