Re: No Library Found!

2001-10-10 Thread Frédéric Viollet
searched  before /usr/ucblib and /usr/lib. - Original Message - From: SeshaKalyan Manyam To: [EMAIL PROTECTED] Sent: Wednesday, October 10, 2001 10:09 AM Subject: RE: No Library Found! change ur option to cc  -I/home/wenwen/openssl-0.9.6/include -o

RE: No Library Found!

2001-10-10 Thread SeshaKalyan Manyam
change ur option to cc  -I/home/wenwen/openssl-0.9.6/include -o cli cli.o /home/wenwen/openssl-0.9.6/libssl.a /home/wenwen/openssl-0.9.6/libcrypto.a      It should work. U give -L option only to give path for a shared library. and "xxx.a" is a static library. -Original Message-Fr

Re: No Library Found!

2001-10-09 Thread Alexey Prohorenko
On Tue, Oct 09, 2001 at 05:29:17PM +0800, wenwen-unitop wrote: > when i compiled /openssl-0.9.6/demos/ssl/cli serv > it just say: > is there any library lost? > cc -I/home/wenwen/openssl-0.9.6/include -o cli cli.o >-L/home/wenwen/openssl-0.9.6/libssl.a -L/home/wenwen/openssl-0.9.6/li

Re: No Library Found!

2001-10-09 Thread Frédéric Viollet
I might be saying something wrong, but I think it would work better if you wrote:   cc  -I/home/wenwen/openssl-0.9.6/include -L/home/wenwen/openssl-0.9.6 -o cli cli.o -lssl -lcrypto   The -I option is to specify your include path, the -L option is to specify your library PATH and the -l opt