mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
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
This commit is contained in:
parent
dbe31f63e1
commit
5bcbd97488
1 changed files with 1 additions and 1 deletions
2
external/easylogging++/ea_config.h
vendored
2
external/easylogging++/ea_config.h
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue