Skip to content

Commit

Permalink
Rollup merge of #131169 - madsmtm:target-info-nto-vendor, r=wesleywiser
Browse files Browse the repository at this point in the history
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`
  • Loading branch information
Zalathar authored Oct 24, 2024
2 parents 9c73bcf + 7a3a98d commit 40d7872
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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()
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ pub(crate) fn target() -> Target {
"-Vgcc_ntox86_64_cxx",
]),
env: "nto71".into(),
vendor: "pc".into(),
..base::nto_qnx::opts()
},
}
Expand Down

0 comments on commit 40d7872

Please sign in to comment.