]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_target/src/spec/mipsel_unknown_none.rs
Auto merge of #97800 - pnkfelix:issue-97463-fix-aarch64-call-abi-does-not-zeroext...
[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::{LinkerFlavor, LldFlavor, RelocModel};
6 use crate::spec::{PanicStrategy, Target, TargetOptions};
7
8 pub fn target() -> Target {
9     Target {
10         llvm_target: "mipsel-unknown-none".into(),
11         pointer_width: 32,
12         data_layout: "e-m:m-p:32:32-i8:8:32-i16:16:32-i64:64-n32-S64".into(),
13         arch: "mips".into(),
14
15         options: TargetOptions {
16             linker_flavor: LinkerFlavor::Lld(LldFlavor::Ld),
17             cpu: "mips32r2".into(),
18             features: "+mips32r2,+soft-float,+noabicalls".into(),
19             max_atomic_width: Some(32),
20             linker: Some("rust-lld".into()),
21             panic_strategy: PanicStrategy::Abort,
22             relocation_model: RelocModel::Static,
23             emit_debug_gdb_scripts: false,
24             ..Default::default()
25         },
26     }
27 }