On Sun, Feb 2, 2014 at 1:09 AM, Sindhu Saripella <[email protected]>wrote:

> g++ -DNDEBUG -g -O2 -pipe -c files.cpp


What happens if you type
  g++ -DNDEBUG -g -O2 -pipe -I. -c files.cpp
That's an upper-case i to tell teh compiler to include the current dir as
an include location. Rather than a simple . it may be better to type in the
complete path
  g++ -DNDEBUG -g -O2 -pipe -I<path to current dir> -c files.cpp

See if this actually compiles that single file. If so then you can adjust
the makefile, it seems to me though something much simpler is wrong, but I
cannot see it from here :-)

-- 

David Irvine
maidsafe.net <http://www.maidsafe.net/>
twitter: @metaquestions
blog:  http://metaquestions.me

-- 
-- 
You received this message because you are subscribed to the "Crypto++ Users" 
Google Group.
To unsubscribe, send an email to [email protected].
More information about Crypto++ and this group is available at 
http://www.cryptopp.com.
--- 
You received this message because you are subscribed to the Google Groups 
"Crypto++ Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to