Displaying 1 result from an estimated 1 matches for "lcrtdll".
Did you mean:
crtdll
2003 Aug 19
1
Problems building dlls for use with winelib
...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 for the original source files:
> winebuild -fPIC -L/usr/local/lib/wine -lntdll -lkernel32 -luser32
> -lgdi32-lcomdlg32 -lcrtdll -o libdll.spec.c --spec libdll.spec
> libdll.temp.o
Finally, I (at least try to) tie everything together in a single
library:
> winegcc -shared -Wl,-soname,libdll.so -DSTRICT -D_REENTRANT
> -L/usr/local/lib/wine -lntdll -lkernel32 -luser32 -lgdi32 -lcomdlg32
> -lstdc++ -lcrtdll -lgcc...