- cross-posted to:
- [email protected]
- cross-posted to:
- [email protected]
I wonder if at some point Wine on Linux will become better than Windows itself.
For most stuff wine is working better than on Windows. Thats why people actually import wine drivers to their real Windows install
Yo what people do that? Gnarly.
for Deus Ex Randomizer, we include the DXVK DLLs as part of the Windows installation automatically, because it runs better and smoother and with less issues
(we run vulkaninfo to check compatibility first, we check support for VK_KHR_maintenance6 or Vulkan 1.4 or newer, otherwise you don’t get DXVK)
https://github.com/Die4Ever/deus-ex-randomizer/blob/master/src/installer/Install/init.py#L123-L151
For most stuff wine is working better than on Windows
So why dont any of my apps work then? Im super happy gaming is about 85% working, but in the apps space its got to be less that 40%
I did not know this was a thing 🤯
@inzen @mr_MADAFAKA as soon as the kernel rewrite happened, this is nearly guaranteed. https://augsburg.social/@schtobia/115767277911084452
There was an update to that post, where the author said it was a “misinterpretation” and that it was just a research project.
@ashleythorne true! But the Win32 ABI was the “holy grail” of Microsoft. You can run a Win95 application written under Borland C++ today! That they even _considering_ of breaking that, would be *unthinkable* a few years ago.
Oh wow, all the legacy software would be stuck on old windows or have to move to linux. If I got that right.
@inzen yeah, that would be terrible. https://www.youtube.com/watch?v=dYCXCqp1U5Y
When will they finally add Copilot?
Upvote or downvote, I cannot decide. I’m both laughing and terrified it could happen.
Once Microsoft has finished the transition of Windows into an Edge launcher with a Copilot backend…
When does proton start pulling it?
I know Proton-GE usually takes a week or two.
if proton is a few months behind wine in big updates, does proton-ge update faster? or is it a week or to behind proton
Proton-GE is essentially bleeding edge with all of its dependencies and upstream set to latest, so it gets updated constantly as a rolling release.
Valve waits until the next version has been well tested before bumping it in proton experimental, and then eventually the default release.
Wine 10 to Proton 10 beta took four months
Does it work on ARM?
Running another uarch is a whole new level of complexity vs just running on a different OS but with the same uarch, especially if concurrency is involved because translating from one instruction set to another can break atomicity assumptions that concurrency depends on to maintain coherency. You’d need to do thorough analysis of the code to determine where special care is needed, and even then, it won’t be trivial setting it up in a way that avoids deadlock because you have to understand what the threads are doing before you can say if it’s safe for one thread to wait for another (since they could end up waiting for each other).
Whereas running code meant for a different OS just requires implementing that OS’ API (and behaviour, possibly including undocumented behaviour some code relies on, which can vary from application to application, hence windows compatibility modes where they add a translation layer themselves). Not saying this is trivial, but compared to the above problem, it kinda is.
Not that ARM support is impossible, just if they manage that, it will be proclaimed loudly, not something that requires digging. If they don’t say it supports ARM, just assume it doesn’t.
So an ARM ReactOS is more likely than an ARM Wine then, I guess.
Yeah, when you’re compiling from source code, it’s much easier to add in ARM support. Kernels do need to handle more hardware-specific stuff, like interrupt handling, context switching, feature enablement and the like will likely need custom ASM code and might have different parameters/events to handle. But at the user level, you can often compile for ARM by just changing a few command line arguments and it’ll be fine as long as you don’t rely on inline ASM and have ARM versions of any libraries you need.
You still might need to do some adjustments for specific behavior differences when it comes to concurrency and atomicity of operations. It didn’t surprise me to see that the previous attempt to make an ARM ReactOS didn’t support multi-threading, because trying to enable it was probably an unreliably buggy mess with race conditions all over the place.
Read this as Wine 1.0 at first lol
Should I switch from Wine Staging to stable?
Excited to try ntsync and other improvements.












