-
Notifications
You must be signed in to change notification settings - Fork 13.1k
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
Add windows_sys type definitions for ARM32 manually #112527
Conversation
r? @ChrisDenton (rustbot has picked a reviewer for you, use r? to override) |
This looks good to me. I might want to think more about how to organise platform support but let's fix this issue first. Could you add a short comment to |
@ChrisDenton I have added some comments in df08f56. Does it makes sense? |
Yep makes sense to me, thanks! @bors r+ rollup |
…iaskrgr Rollup of 4 pull requests Successful merges: - rust-lang#112302 (Suggest using `ptr::null_mut` when user provided `ptr::null` to a function expecting `ptr::null_mut`) - rust-lang#112416 (Fix debug ICE for extern type with where clauses) - rust-lang#112527 (Add windows_sys type definitions for ARM32 manually) - rust-lang#112546 (new solver: extend assert to other aliases) r? `@ghost` `@rustbot` modify labels: rollup
windows_sys
bindings do not include platform-specific type definitions for ARM 32 architecture, so it breaksthumbv7a-pc-windows-msvc
andthumbv7a-uwp-windows-msvc
targets. This PR tries to add them back by manually inserting them together with the generated ones.WSADATA
is copied from the generated definition forx86
.CONTEXT
is copied from the definition beforewindows_sys
is introduced (which is just an empty enum):rust/library/std/src/sys/windows/c.rs
Line 802 in 4a18324
Fixes #112265.