paolo cortesi wrote:
> I am searching informations about .dll libraries for Linux s.o. in order
> to understand if it's possible to generate dynamic libraries which are
> included run time and not compile time in the main program.
> Is it possible? How we could get them?
Read "ELF: From the Progr
You are speaking about dynamic linking. Your friend are
"man 3 dlopen" -- good starting point for use of ".dll"'s (namely .so,
shared object). To make .so file, use -shared and -fpic switches for gcc,
e.g.
gcc -o test.so -fpic -shared test.c
There are (some) similarities exists between windoz