-
Notifications
You must be signed in to change notification settings - Fork 497
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
The build should test x86, x64, nightly, and stable #522
Comments
The build should perhaps also run nightly and stable, not just stable. |
Blocked on rust-lang/rust#82991 |
I've not yet been able to find the root cause of the issue in rustc, but it seems to be an issue from the renaming of the crate in the Cargo.toml file. If you change Of course, the issue in rustc should be fixed so it's up to you whether you want to implement the workaround or wait until the compiler is fixed. |
Currently it only builds x64 and there may be x86 issues that go undetected. For example, these functions are only available for x64 builds:
windows-rs/examples/clock/src/main.rs
Lines 724 to 729 in bf5efbf
We need to use
GetWindowLongA
andSetWindowLongA
for x86 builds.The text was updated successfully, but these errors were encountered: