]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_target/src/spec/mipsel_unknown_none.rs
Auto merge of #2680 - RalfJung:rustup, r=RalfJung
[rust.git] / compiler / rustc_target / src / spec / mipsel_unknown_none.rs
1 //! Bare MIPS32r2, little endian, softfloat, O32 calling convention
2 //!
3 //! Can be used for MIPS M4K core (e.g. on PIC32MX devices)
4
5 use crate::spec::{Cc, LinkerFlavor, Lld, PanicStrategy, RelocModel, Target, TargetOptions};
6
7 pub fn target() -> Target {
8     Target {
9         llvm_target: "mipsel-unknown-none".into(),
10         pointer_width: 32,
11         data_layout: "e-m:m-p:32:32-i8:8:32-i16:16:32-i64:64-n32-S64".into(),
12         arch: "mips".into(),
13
14         options: TargetOptions {
15             linker_flavor: LinkerFlavor::Gnu(Cc::No, Lld::Yes),
16             cpu: "mips32r2".into(),
17             features: "+mips32r2,+soft-float,+noabicalls".into(),
18             max_atomic_width: Some(32),
19             linker: Some("rust-lld".into()),
20             panic_strategy: PanicStrategy::Abort,
21             relocation_model: RelocModel::Static,
22             emit_debug_gdb_scripts: false,
23             ..Default::default()
24         },
25     }
26 }