diff options
author | Riccardo Spagni <ric@spagni.net> | 2018-01-10 11:55:58 +0100 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2018-01-10 11:55:58 +0100 |
commit | bfc0bd82dd6ef761710c92104d71781c5d777277 (patch) | |
tree | 4b9e474d2bdaa7c696f3f43044848b21cf4e368f | |
parent | Merge pull request #3062 (diff) | |
parent | easylogging++: do not use crash log code on android, etc (diff) | |
download | monero-bfc0bd82dd6ef761710c92104d71781c5d777277.tar.xz |
Merge pull request #3063
dff97112 easylogging++: do not use crash log code on android, etc (moneromooo-monero)
-rw-r--r-- | external/easylogging++/ea_config.h | 2 |
1 files changed, 2 insertions, 0 deletions
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 |