how to compile craved ? im getting :
key.cpp:17:23: fatal error: secp256k1.h: No such file or directory
compilation terminated.
you need to install secp256k1 first "git clone
https://github.com/bitcoin/secp256k1"
what about this issue :
irc.cpp: In function void ThreadIRCSeed2():
irc.cpp:321:39: error: expected ) before PRIu64
make: *** [obj/irc.o] Error 1
Open the irc.cpp file and add a line #define PRIu64 "llu" near the top. Apparently that constant is defined in the headers in some distros, and not in others. I had to add it in debian, but it compiled without in linux mint.