Re: Using dinamic librarys

1999-10-18 Thread David Z. Maze
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

1999-10-18 Thread Micha Feigin
How do I compile a program to use dinamic libraries (.so)? Thanx [EMAIL PROTECTED]