You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
rustc_target: The differences between target_os = "none" and target_os = "unknown", and target_vendor = "unknown" and target_vendor = "" are unclear #77730
The majority of targets use target_os = "none" / target_vendor = "unknown" respectively, but some targets deviate and use target_os = "unknown" / target_vendor = "".
Possible solutions:
There's no difference between "", "none" and "unknown", normalize to the more common variants.
There are deep reasons for the status quo, keep and document it.