diff options
author | Riccardo Spagni <ric@spagni.net> | 2017-02-12 23:25:42 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2017-02-12 23:25:42 +0200 |
commit | 4e7bcad58fa682a360b3f8386eb0cd8c91577fb3 (patch) | |
tree | 9064ac540794c6389b95e2881799e5ee2e4a33a1 /contrib/epee | |
parent | Merge pull request #1712 (diff) | |
parent | Fixup choice of easylogging++ vs libunwind stack trace code (diff) | |
download | monero-4e7bcad58fa682a360b3f8386eb0cd8c91577fb3.tar.xz |
Merge pull request #1713
422ecc98 Fixup choice of easylogging++ vs libunwind stack trace code (moneromooo-monero)
Diffstat (limited to 'contrib/epee')
-rw-r--r-- | contrib/epee/include/misc_log_ex.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/contrib/epee/include/misc_log_ex.h b/contrib/epee/include/misc_log_ex.h index b1685f382..ae61965fa 100644 --- a/contrib/epee/include/misc_log_ex.h +++ b/contrib/epee/include/misc_log_ex.h @@ -51,8 +51,9 @@ #define ELPP_THREAD_SAFE #define ELPP_DEFAULT_LOG_FILE "" -#ifndef __ANDROID__ -#define ELPP_STACKTRACE_ON_CRASH 0 +#if !defined __GNUC__ || defined __MINGW32__ || defined __MINGW64__ || defined __ANDROID__ +#else +#define ELPP_STACKTRACE_ON_CRASH 1 #endif #define ELPP_DISABLE_DEFAULT_CRASH_HANDLING #define ELPP_FEATURE_CRASH_LOG 1 |