
In accordance with the design from https://github.com/rust-lang/rust/pull/96827#issuecomment-1208441595
18 lines
539 B
Rust
18 lines
539 B
Rust
use crate::abi::Endian;
|
|
use crate::spec::{Cc, LinkerFlavor, Lld, Target};
|
|
|
|
pub fn target() -> Target {
|
|
let mut base = super::openbsd_base::opts();
|
|
base.endian = Endian::Big;
|
|
base.cpu = "v9".into();
|
|
base.add_pre_link_args(LinkerFlavor::Gnu(Cc::Yes, Lld::No), &["-m64"]);
|
|
base.max_atomic_width = Some(64);
|
|
|
|
Target {
|
|
llvm_target: "sparc64-unknown-openbsd".into(),
|
|
pointer_width: 64,
|
|
data_layout: "E-m:e-i64:64-n32:64-S128".into(),
|
|
arch: "sparc64".into(),
|
|
options: base,
|
|
}
|
|
}
|