-
Notifications
You must be signed in to change notification settings - Fork 12.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix target_vendor
in QNX Neutrino targets
#131169
Conversation
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"`.
r? @wesleywiser rustbot has assigned @wesleywiser. Use |
These commits modify compiler targets. |
not clear to me why the |
The Aarch64 targets are named |
I don't know - what checks for this property? |
No idea, only opened this PR to fix the inconsistency (all the other targets with |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't really have an opinion so I'm happy to merge if any of the target maintainers agree we should do this!
I don't know what immediate value it adds, but it doesn't seem to hurt anything and I guess it's better to be consistent. +1 from me. |
My understanding is that AFAIK Arm machines get |
Ah, fair enough then!
@bors r=wesleywiser |
Rollup of 10 pull requests Successful merges: - rust-lang#130225 (Rename Receiver -> LegacyReceiver) - rust-lang#131169 (Fix `target_vendor` in QNX Neutrino targets) - rust-lang#131623 (misc cleanups) - rust-lang#131756 (Deeply normalize `TypeTrace` when reporting type error in new solver) - rust-lang#131898 (minor `*dyn` cast cleanup) - rust-lang#131909 (Prevent overflowing enum cast from ICEing) - rust-lang#131930 (Don't allow test revisions that conflict with built in cfgs) - rust-lang#131956 (coverage: Pass coverage mappings to LLVM as separate structs) - rust-lang#132076 (HashStable for rustc_feature::Features: stop hashing compile-time constant) - rust-lang#132088 (Print safety correctly in extern static items) r? `@ghost` `@rustbot` modify labels: rollup
Rollup merge of rust-lang#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`
The
x86_64-pc-nto-qnx710
andi586-pc-nto-qnx700
targets havepc
in their target triple names, but the vendor was set to the default"unknown"
.CC target maintainers @flba-eb, @gh-tr, @jonathanpallant and @japaric