-
Notifications
You must be signed in to change notification settings - Fork 23
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
Switch to a proper PE module #130
Comments
I admit I have been following this change in wine from very far, as I fail to see why the change matters. But yeah I guess makes sense we switch to follow the trend. |
Err.... wrong? The goal is to have not require 32bit/multilib gallium nine (or mesa or anything else) when the Windows programs are 32bit. Basically: |
Hum I see. I wonder how some details work though. How are allocations handled ? (Possibly nine will have to use wine's allocator). EDIT: Also are 64bit code mapped into the 32bits program virtual space ? Because 64b code takes more space I guess, so that would be bad for the 2GB limit |
Bth I'm not 100% with the memory allocation and ownership semantics. Instead of misleading you, it would be better to check with the upstream wine team |
As you may have seen, upstream wine is switching from fake PE modules to proper ones. One of the benefits is that you no longer need 32bit/multilib linux libraries.
Lower-level modules like wine-nine are usually split in a PE file on the user-side, which talks to the kernel-side linux DSO via NT style syscalls.
As of Wine 7.5 only 4 modules (of 600+) are fake-PE - openal32.dll.so, opengl32.dll.so, wineusb.sys.so, winex11.drv.so.
Please consider porting wine-nine over.
The text was updated successfully, but these errors were encountered: