Rollup merge of #131169 - madsmtm:target-info-nto-vendor, r=wesleywiser
Fix `target_vendor` in QNX Neutrino targets The `x86_64-pc-nto-qnx710` and `i586-pc-nto-qnx700` targets have `pc` in their target triple names, but the vendor was set to the default `"unknown"`. CC target maintainers `@flba-eb,` `@gh-tr,` `@jonathanpallant` and `@japaric`
This commit is contained in:
commit
40d787234b
@ -21,6 +21,7 @@ pub(crate) fn target() -> Target {
|
||||
"-Vgcc_ntox86_cxx",
|
||||
]),
|
||||
env: "nto70".into(),
|
||||
vendor: "pc".into(),
|
||||
stack_probes: StackProbeType::Inline,
|
||||
..base::nto_qnx::opts()
|
||||
},
|
||||
|
@ -21,6 +21,7 @@ pub(crate) fn target() -> Target {
|
||||
"-Vgcc_ntox86_64_cxx",
|
||||
]),
|
||||
env: "nto71".into(),
|
||||
vendor: "pc".into(),
|
||||
..base::nto_qnx::opts()
|
||||
},
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user