From dff97112c88b9599e52f670ebb174b9fdd8890fe Mon Sep 17 00:00:00 2001 From: moneromooo-monero Date: Thu, 4 Jan 2018 12:50:43 +0000 Subject: [PATCH] easylogging++: do not use crash log code on android, etc --- external/easylogging++/ea_config.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/external/easylogging++/ea_config.h b/external/easylogging++/ea_config.h index c97858f30..4c74925d3 100644 --- a/external/easylogging++/ea_config.h +++ b/external/easylogging++/ea_config.h @@ -8,5 +8,7 @@ #define ELPP_NO_DEBUG_MACROS #ifdef EASYLOGGING_CC +#if !(!defined __GNUC__ || defined __MINGW32__ || defined __MINGW64__ || defined __ANDROID__) #define ELPP_FEATURE_CRASH_LOG #endif +#endif