]> git.proxmox.com Git - rustc.git/blame - src/librustc_target/spec/mipsisa64r6_unknown_linux_gnuabi64.rs
New upstream version 1.47.0+dfsg1
[rustc.git] / src / librustc_target / spec / mipsisa64r6_unknown_linux_gnuabi64.rs
CommitLineData
532ac7d7
XL
1use crate::spec::{LinkerFlavor, Target, TargetOptions, TargetResult};
2
3pub fn target() -> TargetResult {
4 Ok(Target {
5 llvm_target: "mipsisa64r6-unknown-linux-gnuabi64".to_string(),
6 target_endian: "big".to_string(),
7 target_pointer_width: "64".to_string(),
8 target_c_int_width: "32".to_string(),
9 data_layout: "E-m:e-i8:8:32-i16:16:32-i64:64-n32:64-S128".to_string(),
10 arch: "mips64".to_string(),
11 target_os: "linux".to_string(),
12 target_env: "gnu".to_string(),
13 target_vendor: "unknown".to_string(),
14 linker_flavor: LinkerFlavor::Gcc,
15 options: TargetOptions {
16 // NOTE(mips64r6) matches C toolchain
17 cpu: "mips64r6".to_string(),
18 features: "+mips64r6".to_string(),
19 max_atomic_width: Some(64),
20 target_mcount: "_mcount".to_string(),
21
22 ..super::linux_base::opts()
23 },
24 })
25}