summaryrefslogtreecommitdiff
path: root/cmake/config-ix.cmake
diff options
context:
space:
mode:
authorSaleem Abdulrasool <compnerd@compnerd.org>2016-09-01 15:05:36 +0000
committerSaleem Abdulrasool <compnerd@compnerd.org>2016-09-01 15:05:36 +0000
commit1ceb4c0709139db3b99b532f25213bbb8185ef29 (patch)
tree800caf3db202a6729d8efae756085b59ee94177e /cmake/config-ix.cmake
parent85933759ae77e7c9aff1a4efc6792f002a16361d (diff)
build: profile is not a sanitizer
There was an invalid entry in the sanitizer list, remove it. This has no effect on the building, just removes the definition of a cached variable. git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@280378 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'cmake/config-ix.cmake')
-rw-r--r--cmake/config-ix.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/config-ix.cmake b/cmake/config-ix.cmake
index 9eb135398..5d3836184 100644
--- a/cmake/config-ix.cmake
+++ b/cmake/config-ix.cmake
@@ -408,7 +408,7 @@ else()
set(OS_NAME "${CMAKE_SYSTEM_NAME}")
endif()
-set(ALL_SANITIZERS asan;dfsan;msan;profile;tsan;safestack;cfi;esan;scudo)
+set(ALL_SANITIZERS asan;dfsan;msan;tsan;safestack;cfi;esan;scudo)
set(COMPILER_RT_SANITIZERS_TO_BUILD ${ALL_SANITIZERS} CACHE STRING
"sanitizers to build if supported on the target (all;${ALL_SANITIZERS})")
list_replace(COMPILER_RT_SANITIZERS_TO_BUILD all "${ALL_SANITIZERS}")