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
Can you explain a little bit more about what you want to do? I know about PE but I'm not a Wine expert. I have no idea what __wine_spec_nt_header is.
PE and ELF are quite different, and it is not easy to convert a Linux .so to a PE file.
It emits some pesudo PE metadata (like DOS header PE header) into ELF binary as a symbol for ELF binary. The wine loader uses dlopen to open so and calls into the UNIX side.
Wine has this special
__wine_spec_nt_header
https://github.com/wine-mirror/wine/blob/master/tools/winebuild/spec32.c#L738
is that possible to make the elf linker to print this out so that we can easily build linux .so that can be used in wine PE environment?
The text was updated successfully, but these errors were encountered: