rustc_target/spec/targets/x86_64_pc_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::x86_64();
6 target.metadata.description =
7 Some("x86 64-bit 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::X86_64);
10 target.options.env = "nto71".into();
11 target
12}