[compiler-rt] 579efe0 - Temporarily remove `clang_rt.ctx_profile` target

Mircea Trofin via llvm-commits llvm-commits at lists.llvm.org
Mon Apr 22 15:47:07 PDT 2024


Author: Mircea Trofin
Date: 2024-04-23T00:46:52+02:00
New Revision: 579efe011b0c8909d88ac9fd068a30a5f32dd1b2

URL: https://github.com/llvm/llvm-project/commit/579efe011b0c8909d88ac9fd068a30a5f32dd1b2
DIFF: https://github.com/llvm/llvm-project/commit/579efe011b0c8909d88ac9fd068a30a5f32dd1b2.diff

LOG: Temporarily remove `clang_rt.ctx_profile` target

Trying to address the build failure on the `clang-ve-ninja`bot, which
appears hard to repro locally. The target isn't needed currently (there
are unit tests exercising the new functionality). Removing it for now
to green-ify the build bot.

Added: 
    

Modified: 
    compiler-rt/lib/ctx_profile/CMakeLists.txt

Removed: 
    


################################################################################
diff  --git a/compiler-rt/lib/ctx_profile/CMakeLists.txt b/compiler-rt/lib/ctx_profile/CMakeLists.txt
index 621b7d30b76d41..80e71acc38f8a1 100644
--- a/compiler-rt/lib/ctx_profile/CMakeLists.txt
+++ b/compiler-rt/lib/ctx_profile/CMakeLists.txt
@@ -14,15 +14,6 @@ include_directories(../../include)
 # We don't use the C++ Standard Library here, so avoid including it by mistake.
 append_list_if(COMPILER_RT_HAS_NOSTDINCXX_FLAG -nostdinc++ EXTRA_FLAGS)
 
-add_compiler_rt_runtime(clang_rt.ctx_profile
-  STATIC
-  ARCHS ${CTX_PROFILE_SUPPORTED_ARCH}
-  OBJECT_LIBS RTSanitizerCommon RTSanitizerCommonLibc
-  CFLAGS ${EXTRA_FLAGS}
-  SOURCES ${CTX_PROFILE_SOURCES}
-  ADDITIONAL_HEADERS ${CTX_PROFILE_HEADERS}
-  PARENT_TARGET ctx_profile)
-
 if(COMPILER_RT_INCLUDE_TESTS)
   add_subdirectory(tests)
 endif()


        


More information about the llvm-commits mailing list