[compiler-rt] r259577 - [tsan] Disable x86_64h build that was enabled as part of r259542.

Daniel Sanders via llvm-commits llvm-commits at lists.llvm.org
Tue Feb 2 13:41:17 PST 2016


Author: dsanders
Date: Tue Feb  2 15:41:17 2016
New Revision: 259577

URL: http://llvm.org/viewvc/llvm-project?rev=259577&view=rev
Log:
[tsan] Disable x86_64h build that was enabled as part of r259542.

It fails almost every test on clang-stage1-cmake-RA_check.


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=259577&r1=259576&r2=259577&view=diff
==============================================================================
--- compiler-rt/trunk/cmake/config-ix.cmake (original)
+++ compiler-rt/trunk/cmake/config-ix.cmake Tue Feb  2 15:41:17 2016
@@ -299,6 +299,9 @@ set(ALL_CFI_SUPPORTED_ARCH ${X86} ${X86_
 if(APPLE)
   include(CompilerRTDarwinUtils)
 
+  # tsan fails almost everything for x86_64h
+  list(REMOVE_ITEM ALL_TSAN_SUPPORTED_ARCH x86_64h)
+
   # On Darwin if /usr/include doesn't exist, the user probably has Xcode but not
   # the command line tools. If this is the case, we need to find the OS X
   # sysroot to pass to clang.




More information about the llvm-commits mailing list