rustc_target/spec/targets/
x86_64_pc_nto_qnx800.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 = Some("x86 64-bit QNX Neutrino 8.0 RTOS".into());
7    target.options.pre_link_args =
8        nto_qnx::pre_link_args(nto_qnx::ApiVariant::Default, nto_qnx::Arch::X86_64);
9    target.options.env = "nto80".into();
10    target
11}