[Subject Prev][Subject Next][Thread Prev][Thread Next][Subject Index][Thread Index]

Re: To compile a .so lib



On Fri, Feb 25, 2000 at 06:18:26PM +0530, G Gautam wrote:
> Hi,
> 
> I have the source for openssl, but when I compile, I get an .a archive. Lynx wants a .so library. How do I compile, so that I get a .so library ?

gcc -shared *.o  -o libfoo.so

	-Arun