From 1bf5b869677e7cb90c0200ad9fb8e134043c5ed2 Mon Sep 17 00:00:00 2001 From: xiphon Date: Tue, 22 Sep 2020 14:22:06 +0000 Subject: [PATCH] build: ARM - disable stack trace due to segfault in libunwind --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index caabc590f..c2ffe935d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -418,7 +418,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()