diff options
author | Martijn Otto <git@martijnotto.nl> | 2019-09-23 16:30:23 +0200 |
---|---|---|
committer | Martijn Otto <git@martijnotto.nl> | 2019-09-23 16:30:23 +0200 |
commit | 5bcbd974888b21af3ff46814cccef2071ffc6ceb (patch) | |
tree | 74e066f10f2ecb6b777aaa1ff80e1e7a0626ef12 | |
parent | Merge pull request #5899 (diff) | |
download | monero-5bcbd974888b21af3ff46814cccef2071ffc6ceb.tar.xz |
Disable easylogging crash log on non-glibc libraries
- easylogging assumes certain non-standard headers and functions
- these function only exist in glibc
- compiling under linux without glibc thus broke compilation
-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 |