mirror of
https://github.com/monero-project/monero.git
synced 2024-10-01 11:49:47 -04:00
Fixup choice of easylogging++ vs libunwind stack trace code
This commit is contained in:
parent
cb54eeaa31
commit
422ecc98e4
@ -51,8 +51,9 @@
|
|||||||
|
|
||||||
#define ELPP_THREAD_SAFE
|
#define ELPP_THREAD_SAFE
|
||||||
#define ELPP_DEFAULT_LOG_FILE ""
|
#define ELPP_DEFAULT_LOG_FILE ""
|
||||||
#ifndef __ANDROID__
|
#if !defined __GNUC__ || defined __MINGW32__ || defined __MINGW64__ || defined __ANDROID__
|
||||||
#define ELPP_STACKTRACE_ON_CRASH 0
|
#else
|
||||||
|
#define ELPP_STACKTRACE_ON_CRASH 1
|
||||||
#endif
|
#endif
|
||||||
#define ELPP_DISABLE_DEFAULT_CRASH_HANDLING
|
#define ELPP_DISABLE_DEFAULT_CRASH_HANDLING
|
||||||
#define ELPP_FEATURE_CRASH_LOG 1
|
#define ELPP_FEATURE_CRASH_LOG 1
|
||||||
|
3
external/easylogging++/easylogging++.h
vendored
3
external/easylogging++/easylogging++.h
vendored
@ -198,12 +198,15 @@ ELPP_INTERNAL_DEBUGGING_OUT_INFO << ELPP_INTERNAL_DEBUGGING_MSG(internalInfoStre
|
|||||||
# if (ELPP_COMPILER_GCC && !ELPP_MINGW)
|
# if (ELPP_COMPILER_GCC && !ELPP_MINGW)
|
||||||
# define ELPP_STACKTRACE 1
|
# define ELPP_STACKTRACE 1
|
||||||
# else
|
# else
|
||||||
|
# define ELPP_STACKTRACE 0
|
||||||
# if ELPP_COMPILER_MSVC
|
# if ELPP_COMPILER_MSVC
|
||||||
# pragma message("Stack trace not available for this compiler")
|
# pragma message("Stack trace not available for this compiler")
|
||||||
# else
|
# else
|
||||||
# warning "Stack trace not available for this compiler";
|
# warning "Stack trace not available for this compiler";
|
||||||
# endif // ELPP_COMPILER_MSVC
|
# endif // ELPP_COMPILER_MSVC
|
||||||
# endif // ELPP_COMPILER_GCC
|
# endif // ELPP_COMPILER_GCC
|
||||||
|
#else
|
||||||
|
# define ELPP_STACKTRACE 0
|
||||||
#endif // (defined(ELPP_STACKTRACE_ON_CRASH))
|
#endif // (defined(ELPP_STACKTRACE_ON_CRASH))
|
||||||
// Miscellaneous macros
|
// Miscellaneous macros
|
||||||
#define ELPP_UNUSED(x) (void)x
|
#define ELPP_UNUSED(x) (void)x
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
// STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
|
// STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
|
||||||
// THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
// THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
#if !defined __GNUC__ || defined __MINGW32__ || defined __MINGW64__
|
#if !defined __GNUC__ || defined __MINGW32__ || defined __MINGW64__ || defined __ANDROID__
|
||||||
#define USE_UNWIND
|
#define USE_UNWIND
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user