blob: b26e6f19e1ab55c3e8e5fbc537e608021daa0572 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
use crate::spec::Target;
use crate::spec::base::nto_qnx;
pub(crate) fn target() -> Target {
let mut target = nto_qnx::aarch64();
target.metadata.description = Some("ARM64 QNX Neutrino 7.0 RTOS".into());
target.options.pre_link_args =
nto_qnx::pre_link_args(nto_qnx::ApiVariant::Default, nto_qnx::Arch::Aarch64);
target.options.env = "nto70".into();
target
}
|