[compiler-rt] r276255 - Default XRay building to OFF to let build bots that do not support building sanitizers to disable explicitly too
Dean Michael Berris via llvm-commits
llvm-commits at lists.llvm.org
Thu Jul 21 01:53:32 PDT 2016
Author: dberris
Date: Thu Jul 21 03:53:31 2016
New Revision: 276255
URL: http://llvm.org/viewvc/llvm-project?rev=276255&view=rev
Log:
Default XRay building to OFF to let build bots that do not support building sanitizers to disable explicitly too
Modified:
compiler-rt/trunk/CMakeLists.txt
Modified: compiler-rt/trunk/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/CMakeLists.txt?rev=276255&r1=276254&r2=276255&view=diff
==============================================================================
--- compiler-rt/trunk/CMakeLists.txt (original)
+++ compiler-rt/trunk/CMakeLists.txt Thu Jul 21 03:53:31 2016
@@ -37,7 +37,9 @@ option(COMPILER_RT_BUILD_BUILTINS "Build
mark_as_advanced(COMPILER_RT_BUILD_BUILTINS)
option(COMPILER_RT_BUILD_SANITIZERS "Build sanitizers" ON)
mark_as_advanced(COMPILER_RT_BUILD_SANITIZERS)
-option(COMPILER_RT_BUILD_XRAY "Build xray" ON)
+
+# TODO: Flip this to default ON when build bots recognize this new option.
+option(COMPILER_RT_BUILD_XRAY "Build xray" OFF)
mark_as_advanced(COMPILER_RT_BUILD_XRAY)
if (COMPILER_RT_STANDALONE_BUILD)
More information about the llvm-commits
mailing list