This is the mail archive of the gcc-help@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Help Required


> I am sorry I am not able to debug these errors as I am facing 
> these for the first time and also I have a little experience with 
> Programing, When I compile a code from
> demo files of Openssl,
> cli.cpp
> I get the following errors

What is your compilation line? Obviously you forgot to link to the
openssl library. Adding -lssl to the end of your compilation line should
help. This flag will tell the linker to link with the ssl library.
Whenever you use a library, you have to link to it.

> 2. It would be of great help if someone can tell me a link where I 
> can learn how to write applications using Openssl Library.

There must be some good documentation with the openssl package. Else,
searching "openssl tutorial" or something like this on www.google.com
should give you good results.

Alex.
-- 
http://www.gnurou.org


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]