diff options
author | luigi1111 <luigi1111w@gmail.com> | 2019-10-08 14:40:53 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2019-10-08 14:40:53 -0500 |
commit | 29075e69aefc25b897709dd32bb3297a3ffee217 (patch) | |
tree | 9bcf3c1026eeabad7a64dafc900fe1c61461a067 /external | |
parent | Merge pull request #5921 (diff) | |
parent | Disable easylogging crash log on non-glibc libraries (diff) | |
download | monero-29075e69aefc25b897709dd32bb3297a3ffee217.tar.xz |
Merge pulll request #5924
5bcbd97 Disable easylogging crash log on non-glibc libraries (omartijn)
Diffstat (limited to 'external')
-rw-r--r-- | external/easylogging++/ea_config.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/external/easylogging++/ea_config.h b/external/easylogging++/ea_config.h index 4fb48ce3e..5bc603391 100644 --- a/external/easylogging++/ea_config.h +++ b/external/easylogging++/ea_config.h @@ -9,7 +9,7 @@ #define ELPP_UTC_DATETIME #ifdef EASYLOGGING_CC -#if !(!defined __GNUC__ || defined __MINGW32__ || defined __MINGW64__ || defined __ANDROID__) +#if !(!defined __GLIBC__ || !defined __GNUC__ || defined __MINGW32__ || defined __MINGW64__ || defined __ANDROID__) #define ELPP_FEATURE_CRASH_LOG #endif #endif |