diff options
author | TheCharlatan <seb.kung@gmail.com> | 2018-03-20 00:35:47 +0100 |
---|---|---|
committer | TheCharlatan <seb.kung@gmail.com> | 2018-09-10 22:03:42 +0200 |
commit | 29311fd140bf7e9983fa7500ad7c094974484a58 (patch) | |
tree | 8aa0c5c3d2542ebd296e3a922c90c75000d5f895 /CMakeLists.txt | |
parent | Modify depends for monero's dependencies (diff) | |
download | monero-29311fd140bf7e9983fa7500ad7c094974484a58.tar.xz |
Disable stack unwinding for mingw32 depends build.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index a02f62e62..32100e574 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -372,6 +372,9 @@ add_definitions("-DBLOCKCHAIN_DB=${BLOCKCHAIN_DB}") if (APPLE) set(DEFAULT_STACK_TRACE OFF) set(LIBUNWIND_LIBRARIES "") +elseif (DEPENDS AND NOT LINUX) + set(DEFAULT_STACK_TRACE OFF) + set(LIBUNWIND_LIBRARIES "") elseif(CMAKE_C_COMPILER_ID STREQUAL "GNU" AND NOT MINGW) set(DEFAULT_STACK_TRACE ON) set(STACK_TRACE_LIB "easylogging++") # for diag output only |