From ebb709acfc241a43bda71f4128d26d4690de7b17 Mon Sep 17 00:00:00 2001 From: Elfgo Date: Wed, 4 Jun 2025 03:26:56 +0000 Subject: [PATCH] [BugFix][GWP_ASan] Fix GWP_ASan test error. Change-Id: I97c3178c604130b6333f61f4d75cb9dc0d864cb9 Signed-off-by: Elfgo --- compiler-rt/lib/scudo/standalone/CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/compiler-rt/lib/scudo/standalone/CMakeLists.txt b/compiler-rt/lib/scudo/standalone/CMakeLists.txt index bcd93d69b7c9..377b4a71d0ba 100644 --- a/compiler-rt/lib/scudo/standalone/CMakeLists.txt +++ b/compiler-rt/lib/scudo/standalone/CMakeLists.txt @@ -135,7 +135,8 @@ if (COMPILER_RT_HAS_GWP_ASAN) add_dependencies(scudo_standalone gwp_asan) list(APPEND SCUDO_OBJECT_LIBS RTGwpAsan RTGwpAsanBacktraceLibc RTGwpAsanSegvHandler - RTGwpAsanOptionsParser RTSanitizerCommon RTSanitizerCommonLibc) + RTGwpAsanOptionsParser RTSanitizerCommon RTSanitizerCommonLibc + RTSanitizerCommonSymbolizer) append_list_if(COMPILER_RT_HAS_OMIT_FRAME_POINTER_FLAG -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -- Gitee