]> git.lizzy.rs Git - rust.git/blob - src/librustc_target/spec/mips_unknown_linux_uclibc.rs
Auto merge of #68414 - michaelwoerister:share-drop-glue, r=alexcrichton
[rust.git] / src / librustc_target / spec / mips_unknown_linux_uclibc.rs
1 use crate::spec::{LinkerFlavor, Target, TargetOptions, TargetResult};
2
3 pub fn target() -> TargetResult {
4     Ok(Target {
5         llvm_target: "mips-unknown-linux-uclibc".to_string(),
6         target_endian: "big".to_string(),
7         target_pointer_width: "32".to_string(),
8         target_c_int_width: "32".to_string(),
9         data_layout: "E-m:m-p:32:32-i8:8:32-i16:16:32-i64:64-n32-S64".to_string(),
10         arch: "mips".to_string(),
11         target_os: "linux".to_string(),
12         target_env: "uclibc".to_string(),
13         target_vendor: "unknown".to_string(),
14         linker_flavor: LinkerFlavor::Gcc,
15         options: TargetOptions {
16             cpu: "mips32r2".to_string(),
17             features: "+mips32r2,+soft-float".to_string(),
18             max_atomic_width: Some(32),
19             target_mcount: "_mcount".to_string(),
20
21             ..super::linux_base::opts()
22         },
23     })
24 }