[compiler-rt] [hexagon][cmake] Disable ctx_profile (PR #117965)

Brian Cain via llvm-commits llvm-commits at lists.llvm.org
Wed Nov 27 21:08:34 PST 2024


https://github.com/androm3da created https://github.com/llvm/llvm-project/pull/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.

>From 3c2f5e93f95dd093d7c955f07fbd85a2a56550c0 Mon Sep 17 00:00:00 2001
From: Brian Cain <bcain at quicinc.com>
Date: Wed, 27 Nov 2024 23:05:26 -0600
Subject: [PATCH] [hexagon][cmake] Disable ctx_profile

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 baf149306f91bb..4f1d67dcb38e01 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 "")
 



More information about the llvm-commits mailing list