diff options
author | xiphon <xiphon@protonmail.com> | 2020-09-22 14:22:06 +0000 |
---|---|---|
committer | xiphon <xiphon@protonmail.com> | 2020-09-22 14:23:35 +0000 |
commit | 7fca814a673fc581d5ac6d1c83b1a73e72a04327 (patch) | |
tree | 0ced555ea35e9e5c63744703f0be44282452078a /CMakeLists.txt | |
parent | Merge pull request #6819 (diff) | |
download | monero-7fca814a673fc581d5ac6d1c83b1a73e72a04327.tar.xz |
build: ARM - disable stack trace due to segfault in libunwind
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 2a16e0081..cc8f0e1cf 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -395,7 +395,7 @@ elseif(CMAKE_C_COMPILER_ID STREQUAL "GNU" AND NOT MINGW) set(DEFAULT_STACK_TRACE ON) set(STACK_TRACE_LIB "easylogging++") # for diag output only set(LIBUNWIND_LIBRARIES "") -elseif (ARM AND STATIC) +elseif (ARM) set(DEFAULT_STACK_TRACE OFF) set(LIBUNWIND_LIBRARIES "") else() |