mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-21 20:17:55 +00:00
17 lines
490 B
Rust
17 lines
490 B
Rust
use crate::spec::{Target, TargetOptions};
|
|
|
|
pub fn target() -> Target {
|
|
Target {
|
|
llvm_target: "aarch64-unknown-netbsd".into(),
|
|
pointer_width: 64,
|
|
data_layout: "e-m:e-i8:8:32-i16:16:32-i64:64-i128:128-n32:64-S128".into(),
|
|
arch: "aarch64".into(),
|
|
options: TargetOptions {
|
|
features: "+v8a".into(),
|
|
mcount: "__mcount".into(),
|
|
max_atomic_width: Some(128),
|
|
..super::netbsd_base::opts()
|
|
},
|
|
}
|
|
}
|