1
0
Fork 0
forked from lthn/blockchain

compilation fixes

This commit is contained in:
sowle 2021-03-11 06:48:43 +03:00
parent 74f30a8c5f
commit 4bf6a5e2d1
No known key found for this signature in database
GPG key ID: C07A24B2D89D49FC
3 changed files with 4 additions and 4 deletions

View file

@ -55,7 +55,7 @@ ENDMACRO(ENABLE_SHARED_PCH_EXECUTABLE)
file(GLOB_RECURSE PCH pch/*)
file(GLOB_RECURSE COMMON common/*)
file(GLOB CRYPTO crypto/*.*)
file(GLOB_RECURSE CRYPTO crypto/*)
file(GLOB_RECURSE CURRENCY_CORE currency_core/*)
file(GLOB_RECURSE CURRENCY_PROTOCOL currency_protocol/*)
file(GLOB_RECURSE DAEMON daemon/*)

View file

@ -6,9 +6,9 @@
#include "RIPEMD160_helper.h"
#include "auto_val_init.h"
//extern "C" {
extern "C" {
#include "RIPEMD160.h"
//}
}
#define RMDsize 160

View file

@ -245,4 +245,4 @@ namespace stratum
} // namespace stratum
inline std::ostream &operator <<(std::ostream &o, const ethash_hash256 &v) { return print256(o, v); }
inline std::ostream &operator <<(std::ostream &o, const ethash_hash256 &v) { return print_t(o, v); }