rustc_target/spec/targets/
aarch64_unknown_nto_qnx710.rs

1use crate::spec::Target;
2use crate::spec::base::nto_qnx;
3
4pub(crate) fn target() -> Target {
5    let mut target = nto_qnx::aarch64();
6    target.metadata.description =
7        Some("ARM64 QNX Neutrino 7.1 RTOS with io-pkt network stack".into());
8    target.options.pre_link_args =
9        nto_qnx::pre_link_args(nto_qnx::ApiVariant::Default, nto_qnx::Arch::Aarch64);
10    target.options.env = "nto71".into();
11    target
12}