Re: Using dinamic librarys
Micha Feigin <[EMAIL PROTECTED]> writes: MF> How do I compile a program to use dinamic libraries (.so)? By default any library you link against (with the -l switch to cc/ld) is dynamically linked. So, if you need to use libm.so, the standard math library, you'd just use a command something like
Using dinamic librarys
How do I compile a program to use dinamic libraries (.so)? Thanx [EMAIL PROTECTED]