Out of curiousity, how do you get around the linkage requirements of Mach-O, ie the fact that you can't both dlopen and runtime link to the same module?
On Mon, 2003-07-21 at 13:08, Pierre d'Herbemont wrote:
Hi!
This patch enables Mach-O (Darwin linker file format) support in WineLib.
Thanks,
Pierre
ModifiedFiles:
- loader/module.c
ChangeLog:
- Add Mach-O (Darwin file format) support.
On lundi, juil 21, 2003, at 14:38 Europe/Paris, Mike Hearn wrote:
Out of curiousity, how do you get around the linkage requirements of Mach-O, ie the fact that you can't both dlopen and runtime link to the same module?
Yeah that's a good point ;) ntdll which is runtime link in the current build process, is not when building for Mac OS X. It is built as a bundle and is dlopened by libwine with the RTLD_GLOBAL flag added.
Pierre