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
20 lines
620 B
Rust
20 lines
620 B
Rust
use crate::spec::{Cc, LinkerFlavor, Lld, StackProbeType, Target};
|
|
|
|
pub fn target() -> Target {
|
|
let mut base = super::haiku_base::opts();
|
|
base.cpu = "pentium4".into();
|
|
base.max_atomic_width = Some(64);
|
|
base.add_pre_link_args(LinkerFlavor::Gnu(Cc::Yes, Lld::No), &["-m32"]);
|
|
base.stack_probes = StackProbeType::X86;
|
|
|
|
Target {
|
|
llvm_target: "i686-unknown-haiku".into(),
|
|
pointer_width: 32,
|
|
data_layout: "e-m:e-p:32:32-p270:32:32-p271:32:32-p272:64:64-\
|
|
f64:32:64-f80:32-n8:16:32-S128"
|
|
.into(),
|
|
arch: "x86".into(),
|
|
options: base,
|
|
}
|
|
}
|