Displaying 1 result from an estimated 1 matches for "libdll".
Did you mean:
libdl
2003 Aug 19
1
Problems building dlls for use with winelib
...the following build-steps:
1. Build all object files with winegcc/wineg++ and the following flags:
> -W -g -O0 -I/ -I/usr/include/wine -D_DEBUG -DWIN32 -D_WINDOWS
> -DNOARRAYMACROS -DBUILD_DLL -fPIC
2. relocate symbols (took this one from the makefile of advapi32.dll):
> ld -r $(OBJS) -o libdll.tmp.so && strip --strip-unneeded libdll.tmp.so
3. build spec file with the previously generated temporary library, the
imported libraries from winelib and with a spec-file containing the
functions to be exported from the dll and compile it (omitted here)
with the same flags as used above f...