-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
Can't run x86_64-pc-windows-gnu dev binary with wine #139380
Comments
WINE is a compatibility layer for what we would call "pc-windows-msvc". The only change in those commits is we started marking the debuginfo as DWARF, but that's because we do in fact use DWARF debuginfo for GNU targets. It is likely that WINE is identifying a binary that has some slightly changed metadata in a header somewhere and rejecting it needlessly. These binaries still run on Windows platforms, so please file a bug with WINE. |
Thank you for the insight about what the change did. I got the impression that we changed from pdb to dwarf. |
A marker in a binary identifying the debuginfo may have changed, but the actual debuginfo used stayed the same. It was always DWARF. There's basically three possibilities, here, because the basic facts of the matter is "Windows accepts, but WINE rejects":
I think we can dismiss the third on the basis that it is simply difficult to know the future, unless we can identify a strong precedent otherwise. If the second case is what happened, it would almost certainly have to be because we hit a codepath in LLVM that triggers UB or incur some invalid behavior. However, in general, we build our LLVM to trap on hitting what would otherwise be UB codepaths in LLVM. So the only thing that would trigger 2 would be a deliberate but invalid behavior, in which case we may have to file an LLVM bug, or adjust how we use it, depending. For the first, though, either WINE should fix it, or they should reject fixing it for some reason or another, like "we don't deliberately support Windows/GNU binaries". They can also just tell me why I'm wrong or why the change was actually fundamentally incorrect, despite having no observable differences on the actual Windows platform. The change was pretty trivial so we could revert it without much consequence, but it has already hit stable instead of being reported during beta or nightly. We should have a reason slightly better than "external software that tries to replicate the behavior of another platform is apparently not replicating the behavior of that platform". |
I beg to differ. One of the reasons for that, is the ability to tell Wine to log very low level stuff (from OS perspective). Obviously, it's not possible on Windows.
If they do work (I did not test Different targets without
|
Update:
So it's not Wine issue but |
Thanks @mati865 , as I said/suggested in the OP I haven't been able to make a proper gnu toolchain yet on a standalone device, but that suggests to me it's some dependency we have doing something wonky. I'll close this issue and continue in cross-rs/cross#1637 |
Users have reported being unable to run x86_64-pc-windows-gnu binaries in dev profile with 1.86 via cross using wine. I've confirmed the issue happens outside cross with wine-9.0, cross uses wine-7. I've not been able to confirm the issue happens with any other pc-windows-gnu linkers.
I've not been able to test wine-10
issue in cross-rs cross-rs/cross#1637
The problem is
and seems to come from #135790
bisect-rustc
searched nightlies: from nightly-2025-01-03 to nightly-2025-02-15
regressed nightly: nightly-2025-01-24
searched commit range: 649b995...99768c8
regressed commit: 99768c8
bisected with cargo-bisect-rustc v0.6.9
Host triple: x86_64-unknown-linux-gnu
Reproduce with:
@rustbot modify labels: +regression-from-stable-to-stable -regression-untriaged
The text was updated successfully, but these errors were encountered: