From 41e4dded618adf36bd16b6bbb846d4b532df8779 Mon Sep 17 00:00:00 2001 From: Dmitriy Gerasimov <naeper@demlabs.net> Date: Fri, 31 May 2019 13:42:42 +0700 Subject: [PATCH] [+] setup endiands [+] Some more debug output --- dap_chain_cert.c | 4 +++- monero_crypto/common/int-util.h | 14 ++++++++++++-- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/dap_chain_cert.c b/dap_chain_cert.c index 20ce8dd..d98289a 100755 --- a/dap_chain_cert.c +++ b/dap_chain_cert.c @@ -453,7 +453,9 @@ void dap_chain_cert_add_folder(const char *a_folder_path) } closedir(l_dir); - } + log_it(L_NOTICE, "Added folder %s",a_folder_path); + }else + log_it(L_WARNING, "Can't add folder %s to cert manager",a_folder_path); } /** diff --git a/monero_crypto/common/int-util.h b/monero_crypto/common/int-util.h index 780cb06..d549066 100755 --- a/monero_crypto/common/int-util.h +++ b/monero_crypto/common/int-util.h @@ -35,7 +35,6 @@ #include <stdint.h> #include <string.h> #include <sys/param.h> - #if defined(__ANDROID__) #include <byteswap.h> #endif @@ -207,7 +206,18 @@ static inline void memcpy_swap64(void *dst, const void *src, size_t n) { } } -#if !defined(BYTE_ORDER) || !defined(LITTLE_ENDIAN) || !defined(BIG_ENDIAN) +#if !defined(BYTE_ORDER) +#define BYTE_ORDER __BYTE_ORDER__ +#endif +#if !defined(LITTLE_ENDIAN) +#define LITTLE_ENDIAN __LITTLE_ENDIAN__ +#endif + +#if !defined(BIG_ENDIAN) +#define BIG_ENDIAN __BIG_ENDIAN__ +#endif + +#if !defined(BYTE_ORDER)|| !defined(LITTLE_ENDIAN) || !defined(BIG_ENDIAN) static_assert(false, "BYTE_ORDER is undefined. Perhaps, GNU extensions are not enabled"); #endif -- GitLab