blob: 53398539ac20f86019266c45276a8ebc3a1ef9e9 [file] [log] [blame]
use crate::abi::Endian;
use crate::spec::{Target, TargetOptions};
pub fn target() -> Target {
Target {
llvm_target: "mips64-unknown-linux-gnuabi64".to_string(),
pointer_width: 64,
data_layout: "E-m:e-i8:8:32-i16:16:32-i64:64-n32:64-S128".to_string(),
arch: "mips64".to_string(),
options: TargetOptions {
endian: Endian::Big,
// NOTE(mips64r2) matches C toolchain
cpu: "mips64r2".to_string(),
features: "+mips64r2".to_string(),
max_atomic_width: Some(64),
mcount: "_mcount".to_string(),
..super::linux_gnu_base::opts()
},
}
}