mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-14 02:49:40 +00:00
20 lines
665 B
Rust
20 lines
665 B
Rust
use crate::spec::{Target, TargetOptions};
|
|
|
|
pub fn target() -> Target {
|
|
Target {
|
|
llvm_target: "armv6-unknown-freebsd-gnueabihf".into(),
|
|
pointer_width: 32,
|
|
data_layout: "e-m:e-p:32:32-Fi8-i64:64-v128:64:128-a:0:32-n32-S64".into(),
|
|
arch: "arm".into(),
|
|
options: TargetOptions {
|
|
abi: "eabihf".into(),
|
|
// FIXME: change env to "gnu" when cfg_target_abi becomes stable
|
|
env: "gnueabihf".into(),
|
|
features: "+v6,+vfp2,-d32".into(),
|
|
max_atomic_width: Some(64),
|
|
mcount: "\u{1}__gnu_mcount_nc".into(),
|
|
..super::freebsd_base::opts()
|
|
},
|
|
}
|
|
}
|