mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-14 02:49:40 +00:00

In accordance with the design from https://github.com/rust-lang/rust/pull/96827#issuecomment-1208441595
18 lines
625 B
Rust
18 lines
625 B
Rust
use crate::abi::Endian;
|
|
use crate::spec::{Cc, LinkerFlavor, Lld, StackProbeType, Target, TargetOptions};
|
|
|
|
pub fn target() -> Target {
|
|
let mut base = super::netbsd_base::opts();
|
|
base.add_pre_link_args(LinkerFlavor::Gnu(Cc::Yes, Lld::No), &["-m32"]);
|
|
base.max_atomic_width = Some(32);
|
|
base.stack_probes = StackProbeType::Inline;
|
|
|
|
Target {
|
|
llvm_target: "powerpc-unknown-netbsd".into(),
|
|
pointer_width: 32,
|
|
data_layout: "E-m:e-p:32:32-i64:64-n32".into(),
|
|
arch: "powerpc".into(),
|
|
options: TargetOptions { endian: Endian::Big, mcount: "__mcount".into(), ..base },
|
|
}
|
|
}
|