From 236783256efed034b7b4f49f3962aba1975c58a1 Mon Sep 17 00:00:00 2001 From: Karthik Reddy Date: Sat, 16 Nov 2024 23:42:48 +0000 Subject: [PATCH] fix: Disabled unwind --- CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9b9ff7a..02a1560 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -42,9 +42,12 @@ add_compile_options(-std=c++17 -DL1D_CACHE_LINE_SIZE=64 -DSTRING_NAMES=1 ) #glog +add_definitions(-DGLOG_NO_SYMBOLIZE) +set(WITH_UNWIND off CACHE BOOL "Disable unwind" FORCE) add_subdirectory(src/extern/glog) + #cxxopts add_subdirectory(src/extern/cxxopts) include_directories(SYSTEM src/extern/cxxopts/include)