| -----Original Message----- | From: nandu [mailto:[EMAIL PROTECTED] | Sent: Thursday, June 12, 2003 3:07 PM | To: [EMAIL PROTECTED] | Subject: need help in compiling | | | i nedd help in compiling proram using crypto++, in linux7.1 | with gcc 2.96. | are there any flags i have to include while conpiling or just | gcc -o test test.cpp | is enough. | please help me, | thanks.
Hi Nandu, Something similar to as follows would probably do it (assuming the headers and archive are on path): gcc -o test test.cpp -lcryptopp Take a look at the makefile provided and look at the name of the archive. I think its cryptopplib.a. I think the -l switch creates the proper name from cryptopp. Take a look at the man pages for details. Jeff
