You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Title says it all. Over here, we're trying to brainstorm through my issue being that I'm unable to build wine-tkg with the usage of your modern linker, and I thought to raise it up here just in case it might be related to or not. For more info, check the aforementioned link.
The text was updated successfully, but these errors were encountered:
You can probably compile the Unix-side pieces with mold. Don't know if it's tested, but if it doesn't work already, it's probably not missing anything big.
You can not compile the DLLs with mold. mold can only emit ELF files, not PE.
The most problematic flags used by Wine is -Ttext and other executable-layout controlling flags for the preloader (which reserves certain address regions that are always reserved on Win32).
Wine generally have very low linking overhead as it's split into hundreds of DLLs with a small number of object files each. If you really wanted a more modern linker then LLD is officially supported (all you need is to set the native and cross compiler to clang). I'd suggest not messing with mold as it can create subtle issues that are hard to debug and not tested at all by upstream Wine developers.
Title says it all. Over here, we're trying to brainstorm through my issue being that I'm unable to build wine-tkg with the usage of your modern linker, and I thought to raise it up here just in case it might be related to or not. For more info, check the aforementioned link.
The text was updated successfully, but these errors were encountered: