From 26280424d3848bb08bf8260d008252ed0a1a4f71 Mon Sep 17 00:00:00 2001 From: Brian Cain Date: Mon, 2 Dec 2024 15:47:20 -0600 Subject: [PATCH] [hexagon][cmake] Disable ctx_profile (#117965) Since #105495, we will build sanitizer_common when COMPILER_RT_BUILD_CTX_PROFILE is set. But we have outstanding failures when building sanitizer_common, so for now we'll disable ctx_profile too. --- compiler-rt/cmake/caches/hexagon-linux-clangrt.cmake | 1 + 1 file changed, 1 insertion(+) diff --git a/compiler-rt/cmake/caches/hexagon-linux-clangrt.cmake b/compiler-rt/cmake/caches/hexagon-linux-clangrt.cmake index baf149306f91bbb..4f1d67dcb38e01e 100644 --- a/compiler-rt/cmake/caches/hexagon-linux-clangrt.cmake +++ b/compiler-rt/cmake/caches/hexagon-linux-clangrt.cmake @@ -11,4 +11,5 @@ set(COMPILER_RT_BUILD_BUILTINS OFF CACHE BOOL "") set(COMPILER_RT_BUILD_SANITIZERS OFF CACHE BOOL "") set(COMPILER_RT_BUILD_XRAY OFF CACHE BOOL "") set(COMPILER_RT_BUILD_MEMPROF OFF CACHE BOOL "") +set(COMPILER_RT_BUILD_CTX_PROFILE OFF CACHE BOOL "")