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
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
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
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