]> git.proxmox.com Git - rustc.git/blame - compiler/rustc_target/src/spec/aarch64_unknown_freebsd.rs
New upstream version 1.55.0+dfsg1
[rustc.git] / compiler / rustc_target / src / spec / aarch64_unknown_freebsd.rs
CommitLineData
29967ef6 1use crate::spec::{Target, TargetOptions};
8bb4bdeb 2
29967ef6 3pub fn target() -> Target {
29967ef6 4 Target {
8bb4bdeb 5 llvm_target: "aarch64-unknown-freebsd".to_string(),
29967ef6 6 pointer_width: 64,
8bb4bdeb
XL
7 data_layout: "e-m:e-i8:8:32-i16:16:32-i64:64-i128:128-n32:64-S128".to_string(),
8 arch: "aarch64".to_string(),
136023e0 9 options: TargetOptions { max_atomic_width: Some(128), ..super::freebsd_base::opts() },
29967ef6 10 }
8bb4bdeb 11}