From 32144ccda8438f136f5463b61e05ffb8dab7a034 Mon Sep 17 00:00:00 2001 From: Adonis Ling Date: Mon, 26 Sep 2022 08:50:12 +0800 Subject: [PATCH] [Enhancement](debugging) Add more debug info for clang build (#12845) --- be/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/be/CMakeLists.txt b/be/CMakeLists.txt index 094ebc4c3d..db3cc63d4d 100644 --- a/be/CMakeLists.txt +++ b/be/CMakeLists.txt @@ -456,7 +456,7 @@ if (COMPILER_GCC) endif () if (COMPILER_CLANG) - add_compile_options (-fcolor-diagnostics) + add_compile_options(-fcolor-diagnostics -fno-limit-debug-info) if(MAKE_TEST STREQUAL "OFF") add_compile_options(-Qunused-arguments) endif()