summaryrefslogtreecommitdiff
path: root/cmake/config-ix.cmake
diff options
context:
space:
mode:
authorDaniel Sanders <daniel.sanders@imgtec.com>2016-02-02 21:41:17 +0000
committerDaniel Sanders <daniel.sanders@imgtec.com>2016-02-02 21:41:17 +0000
commitfb0caa7c8f19de433397463fcfa8f783ade684c7 (patch)
tree028ec4ef1f0419bb8c960f3da7226dcef86953ef /cmake/config-ix.cmake
parentff1c92c4e4e1b35acc26731d4146c15537046be7 (diff)
[tsan] Disable x86_64h build that was enabled as part of r259542.
It fails almost every test on clang-stage1-cmake-RA_check. git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@259577 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'cmake/config-ix.cmake')
-rw-r--r--cmake/config-ix.cmake3
1 files changed, 3 insertions, 0 deletions
diff --git a/cmake/config-ix.cmake b/cmake/config-ix.cmake
index 077ed9830..62ffa33f8 100644
--- a/cmake/config-ix.cmake
+++ b/cmake/config-ix.cmake
@@ -299,6 +299,9 @@ set(ALL_CFI_SUPPORTED_ARCH ${X86} ${X86_64})
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.