|
| 1 | +use crate::spec::{base, Cc, LinkerFlavor, Lld, Target, TargetOptions}; |
| 2 | + |
| 3 | +pub fn target() -> Target { |
| 4 | + // In QNX, libc does not provide a compatible ABI between versions. |
| 5 | + // To distinguish between QNX versions, we needed a stable conditional compilation switch, |
| 6 | + // which is why we needed to implement different targets in the compiler. |
| 7 | + Target { |
| 8 | + llvm_target: "aarch64-unknown-unknown".into(), |
| 9 | + metadata: crate::spec::TargetMetadata { |
| 10 | + description: Some("ARM64 QNX Neutrino 7.0 RTOS".into()), |
| 11 | + tier: Some(3), |
| 12 | + host_tools: Some(false), |
| 13 | + std: Some(true), |
| 14 | + }, |
| 15 | + pointer_width: 64, |
| 16 | + // from: https://llvm.org/docs/LangRef.html#data-layout |
| 17 | + // e = little endian |
| 18 | + // m:e = ELF mangling: Private symbols get a .L prefix |
| 19 | + // i8:8:32 = 8-bit-integer, minimum_alignment=8, preferred_alignment=32 |
| 20 | + // i16:16:32 = 16-bit-integer, minimum_alignment=16, preferred_alignment=32 |
| 21 | + // i64:64 = 64-bit-integer, minimum_alignment=64, preferred_alignment=64 |
| 22 | + // i128:128 = 128-bit-integer, minimum_alignment=128, preferred_alignment=128 |
| 23 | + // n32:64 = 32 and 64 are native integer widths; Elements of this set are considered to support most general arithmetic operations efficiently. |
| 24 | + // S128 = 128 bits are the natural alignment of the stack in bits. |
| 25 | + data_layout: "e-m:e-i8:8:32-i16:16:32-i64:64-i128:128-n32:64-S128-Fn32".into(), |
| 26 | + arch: "aarch64".into(), |
| 27 | + options: TargetOptions { |
| 28 | + features: "+v8a".into(), |
| 29 | + max_atomic_width: Some(128), |
| 30 | + pre_link_args: TargetOptions::link_args( |
| 31 | + LinkerFlavor::Gnu(Cc::Yes, Lld::No), |
| 32 | + &["-Vgcc_ntoaarch64le_cxx"], |
| 33 | + ), |
| 34 | + env: "nto70".into(), |
| 35 | + ..base::nto_qnx::opts() |
| 36 | + }, |
| 37 | + } |
| 38 | +} |
0 commit comments