18 lines
565 B
Rust
18 lines
565 B
Rust
|
|
use crate::abi::Endian;
|
||
|
|
use crate::spec::{LinkerFlavor, Target, TargetOptions};
|
||
|
|
|
||
|
|
pub fn target() -> Target {
|
||
|
|
let mut base = super::openbsd_base::opts();
|
||
|
|
base.cpu = "ppc64".into();
|
||
|
|
base.add_pre_link_args(LinkerFlavor::Gcc, &["-m64"]);
|
||
|
|
base.max_atomic_width = Some(64);
|
||
|
|
|
||
|
|
Target {
|
||
|
|
llvm_target: "powerpc64-unknown-openbsd".into(),
|
||
|
|
pointer_width: 64,
|
||
|
|
data_layout: "E-m:e-i64:64-n32:64".into(),
|
||
|
|
arch: "powerpc64".into(),
|
||
|
|
options: TargetOptions { endian: Endian::Big, mcount: "_mcount".into(), ..base },
|
||
|
|
}
|
||
|
|
}
|