[compiler-rt] r280378 - build: profile is not a sanitizer
Saleem Abdulrasool via llvm-commits
llvm-commits at lists.llvm.org
Thu Sep 1 08:05:36 PDT 2016
Author: compnerd
Date: Thu Sep 1 10:05:36 2016
New Revision: 280378
URL: http://llvm.org/viewvc/llvm-project?rev=280378&view=rev
Log:
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.
Modified:
compiler-rt/trunk/cmake/config-ix.cmake
Modified: compiler-rt/trunk/cmake/config-ix.cmake
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/cmake/config-ix.cmake?rev=280378&r1=280377&r2=280378&view=diff
==============================================================================
--- compiler-rt/trunk/cmake/config-ix.cmake (original)
+++ compiler-rt/trunk/cmake/config-ix.cmake Thu Sep 1 10:05:36 2016
@@ -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}")
More information about the llvm-commits
mailing list